SQL SELECT Statement

The SQL SELECT Statement

The SELECT statement is used to select data from a database.

Example

Return data from the Customers table :

SELECT CustomerName, City FROM Customers;

Continue reading SQL SELECT Statement