SQL Insert
December 14, 2022 2022-12-14 19:35SQL Insert
Query to insert data into table. Here in this table, since EmployeeId is identity column, thus we don’t need to include this in the select command as it will get auto incremented.
INSERT INTO EMPLOYEE
(FirstName,
LastName,
Age)
VALUES
('Steve',
'Jobs',
44)
Now, after running the select statement, we will get the above inserted data in the table as follows

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
