SELECT Statement
Published July 26, 2025
By Sai Sree Ram Gundepudi
SELECT Statement
The SELECT statement is used to query the database.
SELECT first_name, last_name FROM employees;You can also fetch all columns using *:
SELECT * FROM employees;