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;

Was this solution helpful?

Your feedback helps improve our technical knowledge repository.

Share this article