• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

SQL Order

Sprite

Poznańska Pyra
Joined
Jun 15, 2009
Messages
207
Reaction score
13
Hello,
I search order to SQL. I need delete all acount where not id= 1 and not id = 2 . Someone would write such a command to SQL?
 
DELETE FROM accounts WHERE id NOT IN(1, 2)

OR

DELETE FROM accounts WHERE id != 1 AND id != 2

When I use
HTML:
DELETE FROM accounts WHERE id != 1 AND id != 2[/QUOTE]


#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
 
Back
Top