Hi everyone I want make sure the username is unique!
First I get there username and check if existing already. If not add them to the database, but if the username is taken I will add number behind it.
Example: JoshSmith, JoshSmith1
If there is no username the user still use the id version. I will get there first and last name. And then repeat the above steps.
The problem: If JoshSmith is taken I will add number behind it, but if JoshSmith1 is also taken.
If I use
SELECT count(*) FROM users WHERE username LIKE '%JoshSmith%'
it will return names like JoshSmithing and this is wrong. If I use
MATCH () AGAINST ()
returns the same results.
First I thought to count how many times the username exist and add the number+1
JoshSmith14
But that will be wrong.
Joe_1,Joe_2, etc. – Shomz Sep 9 '12 at 11:32