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

Accounts phpmyadmin clean?

TKO

Syphero Owner!
Joined
Mar 10, 2008
Messages
2,252
Reaction score
27
Location
Sweden
hello!
Is it possible to clean accounts that dosent have any chars on them?
if what sql commad?
 
DELETE FROM `accounts` WHERE NOT EXISTS (SELECT `id` FROM `players` WHERE `accounts.id` = `players.account_id`);

try that, i dont mind if u rep me :P
 
SQL:
DELETE * FROM `accounts` WHERE NOT EXISTS (SELECT `id` FROM `players` WHERE `accounts.id` = `players.account_id`);


 
Last edited:
Back
Top