Revature interview question

How do you select all tables and rows in SQL, what query?

Interview Answer

Anonymous

15 Jan 2021

Syntax: SELECT * FROM table_name Explanation: using "*" after "SELECT" fetches all the fields available from the identified table.

20