SyntaxFix
Write A Post
Hire A Developer
Questions
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