example of select statement syntax
Answers
Answered by
2
Answer:
select * from it; it is the name of file.
Answered by
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