Kunci utama mulai dari angka

#only if the table is created
ALTER TABLE tbl AUTO_INCREMENT = 1000;

#if table is yet to be created
CREATE TABLE tbl (tbl_id AUTO_INCREMENT = 1000);
senzei_h