When there are multiple records are to be inserted in the table following is the common way using T-SQL.
USE
[DatabaseName]
GO
INSERT INTO
MyTable
(name,
id)
VALUES
('ankit',1);
INSERT INTO
MyTable
(name,
id)
VALUES
('rohit',2);
INSERT INTO
MyTable
(name,
id)
VALUES
('shashi',3);
INSERT INTO
MyTable
(name,
id)
VALUES
('ritesh',4);
GO

Join the conversation! Your thoughts help the community grow.