Difference between revisions of "Useful Queries"
From DSP Wiki
(Add password reset query) |
|||
Line 1: | Line 1: | ||
+ | == Resetting an account password == | ||
+ | |||
+ | <pre> | ||
+ | UPDATE accounts SET password = PASSWORD("NEW_PASSWORD_HERE") WHERE login = 'ACCOUNT_NAME_HERE' | ||
+ | </pre> | ||
+ | |||
== Find All Mobs Without Pets == | == Find All Mobs Without Pets == | ||
Revision as of 09:55, 15 November 2015
Resetting an account password
UPDATE accounts SET password = PASSWORD("NEW_PASSWORD_HERE") WHERE login = 'ACCOUNT_NAME_HERE'
Find All Mobs Without Pets
select mobid, mobname, mob_pets.pet_offset from mob_spawn_points inner join mob_groups on mob_spawn_points.groupid = mob_groups.groupid inner join mob_pools on mob_groups.poolid = mob_pools.poolid left join mob_pets on mob_pets.mob_mobid = mob_spawn_points.mobid where mob_pools.mJob IN (9, 14, 15, 18) and mob_pets.pet_offset IS NULL;
Find All Pets Without a Master
select mobid, mobname from mob_spawn_points where mobname LIKE '%\_s\_%' and NOT EXISTS (select * from mob_pets where mob_mobid + pet_offset = mobid limit 1);