SQL SELECT Statement
SQL SELECT Statement
The SELECT statement retrieves data from a database table.
sql
SELECT * FROM customers;
This query retrieves all records from the customers table.

