Database reserved words

Database reserved words



If you use one of the following words in your query specification, you will get a warning that this might collide with the underlying database



Limitations

You can't use the following SQL operators in column naming:

SQL Arithmetic Operators

Operator

Description

Operator

Description

+

Add

-

Subtract

*

Multiply

/

Divide

%

Modulo



SQL Bitwise Operators

Operator

Description

Operator

Description

&

Bitwise AND

|

Bitwise OR

^

Bitwise exclusive OR



SQL Comparison Operators

Operator

Description

Operator

Description

=

Equal to

>

Greater than

<

Less than

>=

Greater than or equal to

<=

Less than or equal to

<>

Not equal to



SQL Compound Operators

Operator

Description

Operator

Description

+=

Add equals

-=

Subtract equals

*=

Multiply equals

/=

Divide equals

%=

Modulo equals

&=

Bitwise AND equals

^-=

Bitwise exclusive equals

|*=

Bitwise OR equals