NOT : NOT : Logic Operator MySQL TUTORIALS


MySQL TUTORIALS » Logic Operator » NOT »

 

NOT


Logical NOT.

Return 1 if the operand is 0.

Return 0 if the operand is non-zero.

mysql>
mysql> SELECT NOT 10;
+--------+
| NOT 10 |
+--------+
|      |
+--------+
row in set (0.00 sec)

mysql> SELECT NOT 0;
+-------+
| NOT |
+-------+
|     |
+-------+
row in set (0.00 sec)



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Logic Operator
» NOT