Reputation: 2399
If my table requires alphanumeric random string as its primary key, how can I achieve this?
If we can only achieve this in the backend system instead of database system, how can we guarantee that the random string is unique in the table?
Would the algorithm look like this?
I am primarily asking how to generate random strings in the DATABASE SYSTEM, not random strings in general.
Upvotes: 0
Views: 3079
Reputation: 1652
Take a look at uniqid()
http://php.net/manual/en/function.uniqid.php
"Gets a prefixed unique identifier based on the current time in microseconds."
Upvotes: 2