Wednesday 27 June 2018

sql - How do I check if a column is empty or null in MySQL?




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 ...)

Answer



This will select all rows where some_col is NULL or '' (empty string)



SELECT * FROM table WHERE some_col IS NULL OR some_col = '';

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...