I need a function (or some other way) to delete all rows that has NULL as content. Example:
A B
1 Name ID
2 John 123456
3 Marie 789012
4 Phil NULLL
So row 4 should be deleted.
I need a function (or some other way) to delete all rows that has NULL as content. Example:
A B
1 Name ID
2 John 123456
3 Marie 789012
4 Phil NULLL
So row 4 should be deleted.
If you want code, please provide your framework. The SQL would be:
DELETE * FROM DB.TableName WHERE A IS NULL OR B IS NULL