CBSE BOARD X, asked by anilpunia58050, 9 months ago

example of select statement syntax​

Answers

Answered by streetsmartsami
2

Answer:

select * from it; it is the name of file.

Answered by chakshitij
2

You can also retrieve data from more than one column. For example, to select first name and last name of all the students. SELECT first_name, last_name FROM student_details; You can also use clauses like WHERE, GROUP BY, HAVING, ORDER BY with SELECT statement.

Similar questions