I have a table to store the customer details. I need to add a new column to give these customers or new customers a unique auto increment ID to identify them and also need the primary key to keep the count of the customers.
I already have primary key AI to display the number of customers. I Googled and learned that only primary key can be auto incremented. So how can I achieve this?
I need the customer ID to be of only number of about 5-10 digits. Something like this: uid = 232100001. It should start from one number and auto increment when the primary key is auto incremented.