• 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!

Solved Remove all items query.

Ceejzor

Murica Born N Raised!
Joined
Jul 5, 2008
Messages
2,293
Reaction score
188
Location
USA - Philippines
Hi, I tried using this.
Code:
DELETE FROM player_depotitems, player_items, tile_items WHERE itemtype = 2471;

But I'm getting this problem.
"#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 'WHERE itemtype = 2471' at line 1"

Any suggestions?

PS should server be totally offline or can it be closed?
 
Last edited:
Ehm, single queries? :p

Code:
DELETE FROM  `player_depotitems` WHERE `itemtype` = '2471';
DELETE FROM  `player_items` WHERE `itemtype` = '2471';
DELETE FROM  `tile_items` WHERE `itemtype` = '2471';
 
Ehm, single queries? :p

Code:
DELETE FROM  `player_depotitems` WHERE `itemtype` = '2471';
DELETE FROM  `player_items` WHERE `itemtype` = '2471';
DELETE FROM  `tile_items` WHERE `itemtype` = '2471';

Should server be totally offline or can I just close it so only I am on and do it?
 
Back
Top