Is it possible to negate a where clause?
e.g.
DELETE * FROM table WHERE id != 2;
WHERE id <> 2 should work fine...Is that what you are after?
WHERE id <> 2