Mega Code Archive

 
Categories / MySQL / Data Type
 

Get the values of the literals TRUE and FALSE

mysql> mysql> SELECT TRUE, FALSE; +------+-------+ | TRUE | FALSE | +------+-------+ |    1 |     0 | +------+-------+ 1 row in set (0.00 sec) mysql> mysql>