Reserved Words |
Scroll |
Relational database columns that are named with reserved words can be "escaped" using back ticks, such as TIMEZONE in the example below.
CREATE TABLE EMP
(
EMPNO CHAR(10) NOT NULL,
EMP_NAME CHAR(30) NOT NULL,
OFFICE_NO CHAR(3)
...
`TIMEZONE` CHAR(3),
...
)