I would like to perform query in which as a result I have column with false if the value in former column is 0 and true if is greater then 0:
as example:
id count
1 1
2 3
3 0
4 5
5 2
result:
id count
1 true
2 true
3 false
4 true
5 true
1 Answer