Currently CustomerID's start at 1 while the first Order generated has OrderID: 100000001
Is there any way of altering these fields, so the first customer created has customer number: 900000001 and the first order created has OrderID: 900000001
Currently CustomerID's start at 1 while the first Order generated has OrderID: 100000001
Is there any way of altering these fields, so the first customer created has customer number: 900000001 and the first order created has OrderID: 900000001
Found a solution to this..
By changing the increment_last_id in eav_entity_store table, you can control the starting number of customer number, Order Number, Invoice Number and shipping Memo Id.
Regards, Fiona
You may try to alter the AUTO_INCREMENT of the table before adding new customer or order:
Paste this code to Phpmyadmin to change the Order Number
Replace the X‘s with your desired order number
for more detail you can go to this link for that: click here