can any one explain about this scenario
I have table called like below
Column | Type | Modifiers
--------+---------+-----------
a | boolean |
b | text |
I inserted some value into the table
I want true value tuple means
pavunkumar=> SELECT * from boll where a ;
a | b
---+-------
t | pavun
t | pavun
t | pavun
t | pavun
t | pavun
(5 rows)
I want to select which contain false value
How could I do that one ?
How about
SELECT * FROM boll WHERE NOT a;
?
Timothy Madden