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;
The SELECT
statement is used to select data from a database.
Return data from the Customers table :
SELECT CustomerName, City FROM Customers;