SQL Server Transact Basic to Expert - Insert Query

This blog show how to use an insert statement with SQL Server. Insert statements are used in different ways to insert data to the table

Syntax:

INSERT into Table/View
( ColumnNames )
Values (values)

Example:

INSERT into Emptable
( EmpName, EmpID)
Values ('1','Karthiik')
Ebook Download
View all
Learn
View all