Specifies the tables from which a SELECT statement retrieves data.
FROM table_reference [, table_reference...]
Description
Use a FROM clause to specify the table or tables from which a SELECT statement retrieves data. The value for a FROM clause is a comma-separated list of table names. Specified table names must follow local SQL naming conventions for tables. For example, the SELECT statement below retrieves data from a single TurboDB table.
SELECT *
FROM "customer.dat"
See the section Relational Operators for more information on retrieving data from multiple tables in a single SELECT query.
The table reference cannot be passed to a FROM clause via a parameter.
Applicability
SELECT