Column Names
[Previous] [Main] [Next]

Like the ANSI-standard Turbo SQL confines each column name to a single word comprised of alphanumeric characters and the underscore symbol "_". To distinguish similar column names from different tables preface the table name.
SELECT Employee_Id
FROM Employee
or
SELECT Employee.Employee_Id
FROM Employee