VOOZH about

URL: https://www.geeksforgeeks.org/questions/write-an-sql-query-to-retrieve-all-columns-from/

⇱ Write an SQL query to retrieve all columns from the "employees" table.


Last Updated :
Discuss
Comments

Write an SQL query to retrieve all columns from the "employees" table.

SELECT * FROM employees;

SELECT ALL employees;

SELECT COLUMN employees;

SELECT employees;

This question is part of this quiz :

SQL Query-Based Questions Quiz
Share your thoughts in the comments
GeeksforGeeks