Is it possible to negate a where clause?
e.g.
DELETE * FROM table WHERE id != 2;
delete from table where id <> 2
edit: to correct syntax for MySQL