SQL question - Cursor or not?
- by grady
Hi, I have a query which returns 2+ rows. In those results is a column which we can call columnX for now. Lets look at those example results:
columnX
100
86
85
70
null
null
I get 6 rows for example, some of them are null, some of them are not null. Now I want to go through those results and stop as soon as I find a row which is < null. How can I do that?
Thanks in advance :-)