SQL Server 2008 Method of Row Construction:
USE YourDB
GO
INSERT INTO MyTable (FirstCol, SecondCol)
VALUES ('First',1),
('Second',2), ('Third',3), ('Fourth',4), ('Fifth',5)
No comments:
Post a Comment