What SQL command would you use to retrieve all the records from a table named "Employees"?

  • SELECT * FROM Employees
  • SHOW TABLE Employees
  • GET ALL Employees
  • FETCH Employees
To retrieve all the records from a table named "Employees" in a relational database like MySQL, you would use the SQL command: SELECT * FROM Employees. The SELECT * statement retrieves all columns and rows from the specified table, effectively fetching all the records.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *