dndaughtery
Programmer
I need to write a query which returns all records that don't have a 602 or 610 in a field called subserviceID. This is what I currently have:
SELECT * From rejects where SubServiceID Not In (602, 610)
But it returns no rows. I have checked the table and the majority of the records have a null value which I'd like to have reurned. What am I doing wrong?
SELECT * From rejects where SubServiceID Not In (602, 610)
But it returns no rows. I have checked the table and the majority of the records have a null value which I'd like to have reurned. What am I doing wrong?