Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Automatisch generierte Sequenznummer ab 001 (NUR FÜR 3 ZIFFERN) - PHP / MYSQL

Fügen Sie einfach die Länge 3 und Nullfüllung zu Ihrer ID-Spalte hinzu.

ALTER TABLE  `YOUR_TABLE` CHANGE  
`id_column`  `id_column` INT( 3 ) UNSIGNED ZEROFILL NOT NULL AUTO_INCREMENT