Hah. So. I've been playing with this particular query where I'm trying to delete a large swath of rows but I end up not doing what I'm expecting. I've run various variations of this query and I'm not having any luck.
Basically I'm trying to do this:
DELETE FROM table WHERE country <> 'MX' OR 'CA';
OR
DELETE FROM table WHERE foobar NOT IN ( 12 OR 5 );
OR
DELETE FROM table WHERE foobar NOT IN ( 'foo' ) OR ( 'bar' );
And a couple other ideas I had that weren't working. I'm just uploading a fresh dataset for the umpteenth time I'd appreciate some help in the right direction.