In my database (MySQL) table, has a column with 1 and 0 for represent true and false respectively.
1
0
true
false
But in S
S
You have a number of choices:
TRUE
FALSE
Use (as pointed in this answer)
SELECT CASE WHEN hide = 0 THEN FALSE ELSE TRUE END FROM
Or if Boolean is not supported:
SELECT CASE WHEN hide = 0 THEN 'false' ELSE 'true' END FROM