I want to create a table which will auto increment the id. Identity is not working, do we have any other solution?
CREATE TABLE production_categories (
category_id INT IDENTITY (1, 1) PRIMARY KEY,
category_name VARCHAR (255) NOT NULL
);
I want to create a table which will auto increment the id. Identity is not working, do we have any other solution?
CREATE TABLE production_categories (
category_id INT IDENTITY (1, 1) PRIMARY KEY,
category_name VARCHAR (255) NOT NULL
);
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.