Back
I have a column in a table which might contain null or empty values. How do I check if a column is empty or null in the rows present in a table.
(e.g. null or '' or ' ' or ' ' and ...)
Try this code:
SELECT * FROM table WHERE some_col IS NULL OR some_col = '';
31k questions
32.8k answers
501 comments
693 users