I have following Result Set:
FieldTypeID Level
1 0
2 0
2 1
3 0
From this set I want to select following rows:
FieldTypeID Level
1 0
2 1
3 0
In short what I want to do is a write a SQL where condition which will filter out the Records whose FieldTypeID = 2 and whose Level = 0
1 Answer