Is it possible to insert more than one row in a table with one insert statement? I know this will happen if I do:
insert into table ( fields ) select values
INSERT INTO College (CustomerID, FirstName, MiddleName, LastName)
SELECT 7, N'Charles', N'Simmons', N'Burns'
UNION ALL
SELECT 9, N'Dominic', N'Fred', N'Einsten'
UNION ALL
SELECT 12, N'Dave', N'William, N'Bryan';
NOTE: Letter N before each hard coded string value converts string to an NVARCHAR value to match the datatype of the column.