Answers for "how to add auto increment primary key"

SQL
0

how to add auto increment primary key

CREATE TABLE Inventory (
item_number int AUTO_INCREMENT PRIMARY KEY,
item_type varchar(255),
item_category varchar(255),
item_name varchar(255);
Posted by: Guest on February-03-2022

Code answers related to "how to add auto increment primary key"

Code answers related to "SQL"

Browse Popular Code Answers by Language