programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
try another color:
try another fontsize: 60% 70% 80% 90%
ProgrammingFAQs

how to determine constant values in mysql

The constants TRUE and FALSE

The constants TRUE and FALSE evaluate to 1 and 0, respectively. The constant names can be written in any lettercase.

eg: SELECT TRUE, true, FALSE, false;

o/p

TRUE TRUE FALSE FALSE
1 1 0 0