I tried this query in SQL Server:
INSERT INTO Buchungsquelle (buchungsquelle)
VALUES (34776), (35025), (35027), (35036), (35079), (35080), (35081),(35082), (35101);
however, I get an error:
Wrong syntax near ','
What am I doing wrong?
EDIT: table creation statement:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Buchungsquelle]
(
[buchungsquelle] [int] IDENTITY(1,1) NOT NULL,
PRIMARY KEY CLUSTERED ([buchungsquelle] ASC)
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF,
IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON,
ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
EDIT: I found the error now, I have a SQL Server 2005 Version installed on testsystem here ;) So I guess, it doesn't work with that syntax anyway... is there some other way to do it easier?