Elegant Sql Fixes
How to fix things (broken level view, post-raid, etc.) with SQL queries and phpMyAdmin.
Levels not appearing when you click search?
-- Fix starCoins
UPDATE `levels` SET `levels`.`starCoins` = 1 WHERE `starCoins` > 1;
UPDATE `levels` SET `levels`.`starCoins` = 0 WHERE `starCoins` < 0;
-- Fix starDemon
UPDATE `levels` SET `levels`.`starDemon` = 1 WHERE `starDemon` > 1;
UPDATE `levels` SET `levels`.`starDemon` = 0 WHERE `starDemon` < 0;Raided and want to remove the residue users?
DELETE FROM `users` WHERE
`users`.`userID` >= 40 -- first residue user ID
AND `users`.`userID` <= 12345; -- last residue user IDWant to disable an account?
Have any other questions?
Last updated