Answers for "primary key start from number"

SQL
0

primary key start from number

#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);
Posted by: Guest on May-28-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language