Reputation: 6799
So there is some target_field
which has no default and can't be null how do you select all rows where this field is empty i.e. unpopulated?
SELECT * FROM some_table WHERE target_field ???
in my case the field is of type varchar(100)
Upvotes: 2
Views: 85