Revature Interview Question

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

Interview Answer

Anonymous

Jan 15, 2021

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

20