Hi,
I want to delete null records, the problem is when I try to query * (all) records of the table so that I can see the null records and delete it, but the null records does not show up. How can I delete it. I already tried:
> delete from TableName where FiedlA = " " (also ""
> delete from TableName where FieldA is null
> select * from TableName where FieldA is null
> select * from TableName where FieldA = "" (also " "
Thanks
I want to delete null records, the problem is when I try to query * (all) records of the table so that I can see the null records and delete it, but the null records does not show up. How can I delete it. I already tried:
> delete from TableName where FiedlA = " " (also ""
> delete from TableName where FieldA is null
> select * from TableName where FieldA is null
> select * from TableName where FieldA = "" (also " "
Thanks