Latruwski, could you make one that deletes from creature_spawns, lowest id is 226410 and highest id is 226501
DELETE FROM `creature_spawns` WHERE `id` BETWEEN 226410 and 226501
I tried that, it didn't work
should work perfectly....Code:delete from creature_spawns where id between 226410 and 226501;
if not try this:
replace the numbers colored with the numbers from 226410 to 226501 (yes lot of work but it should work...) seperate all numbers with a cumma... like in the example...Code:delete from creature_spawns where id in(226410,226411,226412,226413);
grtz![]()
Nvm, I got it to work
First of, +Rep, this has been very very useful for me. And learning too.
Second of all. I'm trying to make a query that change the buyprice from every entry in the item_extendedcost. And I got till this, but it just conitnue to change on all items for me.
Code:UPDATE items SET buyprice = '15' WHERE entry IN (SELECT entry FROM items_extendedcost);
was looking for theese....thanx for reposting this :O +Rep