Keywords
Keywords are words that have a special meaning in SQL. There are two types of keywords: reserved and non-reserved keywords.
A reserved keyword cannot be used as a regular identifier. Although
you can use non-reserved keywords as regular identifiers, it is typically
not a good practice to do so. Keywords are not case-sensitive, so
for example, the keyword select
has the same meaning
as SELECT
or Select
.