Create table
December 11, 2022 2022-12-11 16:50Create table
SQL command to create table with identity and primary key constraint
CREATE TABLE EMPLOYEE
(
EmployeeId INT IDENTITY(1,1) NOT NULL,
FirstName VARCHAR(20),
LastName VARCHAR(20),
Age INT,
CONSTRAINT PK_EmployeeId PRIMARY KEY CLUSTERED (EmployeeId)
)
Please comment and share if you like this post and tell us about how we can enhance our posts. Thanks.
Subhajit
This is Subhajit Sinha, with more than 8 years of experience as a full stack developer in renowned Multinational Companies, here in this portal as an online tutor I will guide you personally to level up your programming skills and also will coach you to augment your career and salary as well.
Search
Popular posts
