From (SQL)
Appearance
FROM
is an SQL reserved word.
The FROM
clause is used in conjunction with SQL statements, and takes the following general form:
SQL-DML-Statement
FROM
table_nameWHERE
predicate
Examples
The following query returns only those rows from table mytable where the value in column mycol is greater than 100.
SELECT * FROM mytable WHERE mycol > 100