Hi all, I have an INSERT statement that enters a bunch of new rows, then I would like to DELETE all rows where id = 'NULL'
I am using the following command(s):
DELETE FROM t_devices WHERE id like 'NULL';
as well as
DELETE FROM t_devices WHERE id = 'NULL';
neither are working but if I do this:
DELETE FROM t_devices WHERE id <> 'NULL', all other records are being deleted.
any suggestions?
thanks,
I am using the following command(s):
DELETE FROM t_devices WHERE id like 'NULL';
as well as
DELETE FROM t_devices WHERE id = 'NULL';
neither are working but if I do this:
DELETE FROM t_devices WHERE id <> 'NULL', all other records are being deleted.
any suggestions?
thanks,