-6

Can any one tell me how can I create unique ID? For example:

Account id 9845673333
Account id 9845673334
Account id 9845673335
Account id 9845673336
Martin Smith
  • 438,706
  • 87
  • 741
  • 845

1 Answers1

0

You can just have a stored integer value starting from 1, and increment it each time you need to issue a new account id.

Then, it will always be unique.

Lai Xin Chu
  • 2,462
  • 15
  • 29