TurboSQL Guide

Table Names

Previous  Top  Next

Like the ANSI standard TurboSQL confines each table name to a single word comprised of alphanumeric characters and the underscore symbol "_"

SELECT *
FROM customer

TurboSQL supports full file and path specifications in table references. Table references with path or filename extensions must be enclosed in 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.