INSERT INTO [Temp].[dbo].[Student] ([Fname], [Lname], [Gender]) VALUES (N'Aname', N'Alname', N'Male') GO
These codes work fine, but when I try to add multiple values, this results in an error
Error: Incorrect syntax next to ','.
USE TEMP GO INSERT INTO [Temp].[dbo].[Student] ([Fname], [Lname], [Gender]) VALUES (N'Aname', N'Alname', N'Male'), (N'Bname', N'Blname', N'Male') GO
Ebeen source share