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

AAC [PHPMyAdmin]Delete Account without players

potinho

Advanced OT User
Joined
Oct 11, 2009
Messages
1,403
Solutions
17
Reaction score
151
Location
Brazil
Is there a way to delete (by some SQL script) the accounts that don't have players? If it's relevant information, I use Gesior.
 
Solution
wat. it should not delete any accounts because query was wrong.

anyways I said use on test database - your fault.

Here is the fixed query:
Code:
DELETE FROM accounts
 WHERE id NOT IN (SELECT p.account_id 
                        FROM players p)
Yes its possible with single query.

Try this (not tested), so maybe try this on test database, but should work.

Code:
DELETE FROM accounts
 WHERE NOT EXISTS(SELECT NULL
    FROM players p
    WHERE p.account_id = id)
 
Yes its possible with single query.

Try this (not tested), so maybe try this on test database, but should work.

Code:
DELETE FROM accounts
 WHERE NOT EXISTS(SELECT NULL
    FROM players p
    WHERE p.account_id = id)
bring back all accounts
 
wat. it should not delete any accounts because query was wrong.

anyways I said use on test database - your fault.

Here is the fixed query:
Code:
DELETE FROM accounts
 WHERE id NOT IN (SELECT p.account_id 
                        FROM players p)
 
Solution
Back
Top