TurboDB Engine Documentation
FROM
Previous  Top  Next


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 Turbo SQL naming conventions for tables. For example, the SELECT statement below retrieves data from a single TurboDB table.

SELECT *
FROM "customer.dat"

Anwendung
SELECT