This is my table:
id id_1 camp
1 0 x1
2 0 x2
3 0 x3
4 1 x4
5 1 x5
6 1 x6
7 3 x7
8 3 x8
9 3 x9
I am in need of a SQL that, if there are no rows with id_1
of "x", it should return those with id_1
of 0. For example, if I were to select id_1
= 2, it would return the select * where
id_1= 0
.
Could this be done in one statement? I had little luck using IF EXISTS or CASE. Syntax...
Thanks, as always