Account Number - Is this normal?

keough

New member
Messages
173
Points
0
Emulator
I used to check account numbers of players then recently this came up.

the numbering of account was not followed.

2v9smf4.png


 
If someone(People with SQL access) set ID as 4000(and current high is 3000), it would start counting from 4000 then...

(Also, use order by query to know if account ID are in sequence)

SELECT * FROM login ORDER BY account_id ASC;

OR,

The accounts are deleted?

 
Last edited by a moderator:
If someone(People with SQL access) set ID as 4000(and current high is 3000), it would start counting from 4000 then...

(Also, use order by query to know if account ID are in sequence)

SELECT * FROM login ORDER BY account_id ASC;

OR,

The accounts are deleted?
I dunno why the account numbering changed.. but no accounts deleted.

 
It wouldn't change itself. Some admin could made mistake and add some extra 0 while copying id by hand.

 
Back
Top