OVERVIEW   1 FROM   2 SELECT   3 WHERE   4 GO BACK   ←

SQL: FROM

The FROM keyword tells the computer which table (or tables) the SQL statement will involve.

In the example below, data is being extracted from a table named vendors.

SELECT *

FROM vendors

WHERE idno = 114;

← PREVIOUS