How can we enter BOOLEAN values in MySQL statement?
Answers
Answered by
0
as we know that there is no Boolean data type in my SQL hence by using TRUE or true FALSE or false we can enter boolen values in mySQL
mysql > select TRUE / FALSE;
TRUE | FALSE
1. 0
1 ROW IN SET (0.00SEC)
MYSQL > select true or false
Similar questions