I've seen other posts with mySQL syntax for adding leading zeros to my column but it doesn't seem to be working. Here's what I need.
Table Name: MyCustomers
Column Name: CustomerID
The data in this column goes something like:
1
2
3
4
5
etc.
I would like it to look like:
0001
0002
0003
0004
etc.
Can someone point out the correct MySQL syntax to make it work?
Thanks...
Table Name: MyCustomers
Column Name: CustomerID
The data in this column goes something like:
1
2
3
4
5
etc.
I would like it to look like:
0001
0002
0003
0004
etc.
Can someone point out the correct MySQL syntax to make it work?
Thanks...