Bandobras Took Emperor Joined Jun 27, 2007 Messages 1,923 Location Orem, UT May 26, 2016 #1 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 = ?
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 = ?
Ryika Lazy Wannabe Artista Joined Aug 30, 2013 Messages 9,393 May 27, 2016 #2 Only with SQL: DELETE FROM Civilizations WHERE TYPE <> 'CIVILIZATION_ALIEN'; ..would (while untested) mass-delete all Civs while letting the Alien-Civ intact.
Only with SQL: DELETE FROM Civilizations WHERE TYPE <> 'CIVILIZATION_ALIEN'; ..would (while untested) mass-delete all Civs while letting the Alien-Civ intact.
Bandobras Took Emperor Joined Jun 27, 2007 Messages 1,923 Location Orem, UT May 27, 2016 #3 Thank you for the answer.