I have a table called contacts and a column called name. I’m trying to delete rows where the name field is empty.
I make the following call
delete from contacts where name=''
This doesn’t work as expected; the row is not being deleted.
How do I achieve this?
You might try
where name is null.