13 lines
302 B
Plaintext
13 lines
302 B
Plaintext
![]() |
Although, it is syntactically possible (by using delimiters) to use SQL reserved keywords as identifiers and object names, it is best to not use them to avoid any confusion.
|
||
|
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
CREATE TABLE "SELECT" ( "FROM" INT ); -- Noncompliant
|
||
|
|
||
|
SELECT "FROM" FROM "SELECT";
|
||
|
----
|
||
|
|
||
|
|