TurboDB Engine Documentation
Table Names
Previous  Top  Next


Like the ANSI standard Turbo SQL confines each table name to a single word comprised of alphanumeric characters and the underscore symbol "_"
SELECT *
FROM customer

Turbo SQL supports full file and path specifications in table references. Table references with path or filename extensions must be enclosed in single or double quotation marks. For example:
SELECT *
FROM 'parts.dat'
SELECT *
FROM "c:\sample\parts.dat"

If you omit the file extension for a local table name, ".dat" is assumed.