"So how can i adapt WHERE to make it like WHERE Deleted='' ? or is that right?"
it depends on what you mean by 'blank'
if you updated the record like:
UPDATE table
SET field=''
WHERE something
then the field contains an empty string and WHERE field='' will work.