Question d’entretien chez Revature

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

Réponse à la question d'entretien

Utilisateur anonyme

15 janv. 2021

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

20