rspec/rules/S4413/rule.adoc

13 lines
302 B
Plaintext
Raw Normal View History

2020-06-30 12:49:37 +02:00
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";
----