NOT with WHERE?

Bandobras Took

Emperor
Joined
Jun 27, 2007
Messages
1,923
Location
Orem, UT
I've got a handle on using the <Update> and <Where> tags, but is there a way to do "not equal to" rather than "equal to"?

i.e.

!=
rather than
=

?
 
Only with SQL:

DELETE FROM Civilizations
WHERE TYPE <> 'CIVILIZATION_ALIEN';

..would (while untested) mass-delete all Civs while letting the Alien-Civ intact.
 
Thank you for the answer.
 
Back
Top Bottom