rspec/rules/S4413/rule.adoc
2022-02-04 16:28:24 +00:00

14 lines
316 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
[source,text]
----
CREATE TABLE "SELECT" ( "FROM" INT ); -- Noncompliant
SELECT "FROM" FROM "SELECT";
----