I need some tips on how to do this better, I am inserting multiple queries with using one connection.
I understand this is not good programming, especi
UNION your SELECT statements together to insert multiple rows into the same table.
INSERT INTO dbo.Products (ID, [Name]) SELECT 1, 'Car' UNION ALL SELECT 2, 'Boat' UNION ALL SELECT 3, 'Bike'