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 can do something like this:
SELECT id,name, REPLACE(REPLACE(hide,0,"false"),1,"true") AS hide FROM your-table
Hope this can help you.