..... statement retrieves zero or more rows from one or more database tables
Answers
Answered by
20
Answer:
Ans: SELECT statement retrieves zero or more rows from one or more database tables.
Explanation:
Answered by
4
Select statement is the correct answer
Explanation:
- Select statement is an Data manipulation command This statement is used for fetching the data from one or more tables .The Select statement query gives the result set.
- Following are the syntax of select statement
select attibute_name from tablename
For example
- select id,name from stu;
it will gives the column id and name from stu table .
Learn More:
https://brainly.in/question/8491656
Similar questions