I have an INT field in a large MySQL database containing incremental numbers in an INT field. These numbers are currently regular auto-increment numbers (1, 2, 3), but I need to first put them in three digits with zeros (so that I get 001, 002, 003 .. 010, 011, etc.).
What commands can I run in my database to change this column in the format I need?
mysql int padding
MarathonStudios
source share