Hello,
I am trying to delete rows from a table where one of the columns contain no data. I tried this:
delete from tablename where response column is null;
or tried this too:
delete from tablename where tablename.column is null;
didnt give error but when I checked my table I saw that it didnt delete those rows that has empty fields under that column.
WHen I checked my table structure, I saw that for that column I had put varchar(7) for data type and no to null.
Is it not working because I marked that column as no to null when I was creating the table? If so, what are the empty cells in that column considered? And how can I delete the rows that contain those empty cells?