Check whether a field is empty or null in MySQL?
Answers
Answered by
0
Answer:
SELECT * FROM ColumnValueNullDemo WHERE ColumnName IS NULL OR ColumnName = ' ';
Explanation:
phpcoder.tech
Similar questions