SELECT * FROM table-1 [WHERE selection-criteria] [ORDER BY column-1 [ASC|DESC] [, column-2 [ASC|DESC]] ...];
SELECT * FROM products WHERE categoryID = 2;
SELECT column-1 [, column-2] ... FROM table-1 [WHERE selection-criteria] [ORDER BY column-1 [ASC|DESC] [, column-2 [ASC|DESC]] ...];
SELECT productName, listPrice FROM products WHERE listPrice < 500 ORDER BY listPrice ASC;
SELECT
statement is a SQL statement that returns a result set (or result table) that consists of the specified rows and columns.SELECT
clause.FROM
clause.WHERE
clause.ORDER BY
clause.