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

Lua I need a sql query.

husam

Member
Joined
Aug 23, 2008
Messages
2,216
Reaction score
11
Location
Iraq-Baghdad
Hello Otland community.
I wounder if anyone can give me an query that can do this:
find ITEMID and replace it by ITEMID
Thanks. For sure rep++++:peace:
 
Players:
Code:
UPDATE `player_items` SET  `itemtype` =  'NewID' WHERE `itemtype` ='OldID';

Depots:
Code:
UPDATE `player_depotitems` SET  `itemtype` =  'NewID' WHERE `itemtype` ='OldID';
 
Back
Top