Mysql Query help
What would I need to type to take all items with a recommended level over 60 out of loot tables completely. So they don't drop anywhere.
Sorry for the noob question but I can't seem to get it lol ;p |
Someone smart has to know ;p
|
Code:
mysql> DELETE FROM `items` WHERE `reclevel` > 60; |
And if you want required:
Code:
mysql> DELETE FROM `items` WHERE `reqlevel` > 60; |
If you only want to remove them from the loot tables use:
to see what there are: Code:
SELECT Code:
SELECT Code:
DELETE Code:
DELETE |
If you wanted to do both at the same time, you should be able to add an OR to the WHERE clause. Same with the SELECT query.
|
recommended level over 60
|
All times are GMT -4. The time now is 01:33 PM. |
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.