Tried to fill in a table with insert into command, but it just works for one value not for more.
I work with MS Access and the mistake is the comma placement, but I didn't find the mistake. Tried it with just one value and that works, but I have to insert it all.
INSERT INTO Abteilung (ID, Abteilung, Mitarbeiteranzahl)
VALUES (('1', 'Einkauf', '5'), ('2', 'HR', '5'), ('3', 'Controlling', '5'),
('4', 'Produktion', '20'), ('5', 'Vertrieb', '20'),
('6', 'Qualitätsmanagement', '3'), ('7', 'Industrial Engineering', '8')
)