If I have a database table t1
that has the following data:
How can I select just those columns that contain the term "false"
a | b | c | d
------+-------+------+------
1 | 2 | 3 | 4
a | b | c | d
5 | 4 | 3 | 2
true | false | true | true
1 | 2 | 3 | 4
a | b | c | d
5 | 4 | 3 | 2
true | false | true | true
1 | 2 | 3 | 4
a | b | c | d
5 | 4 | 3 | 2
true | false | true | true
Thanks