I try to add two new rows to a table in an Oracle database with following code:
INSERT INTO NBGPASSQ.INF_TBL_ART
(A_ID, A_TEXT, A_KST, A_ZUS1)
VALUES (17, 'Ukraine-Flucht AsylbLG§1a.v.E.', 'L313100002', '500'),
(18, 'Ukraine-Flucht AsylbLG§1i.v.E.', 'L313100001', '500');
However, I always get this error message:
SQL-Error [933] [42000]: ORA-00933: SQL command was not terminated correctly
If I insert the rows separately it works:
INSERT INTO NBGPASSQ.INF_TBL_ART
(A_ID, A_TEXT, A_KST, A_ZUS1)
VALUES (17, 'Ukraine-Flucht AsylbLG§1a.v.E.', 'L313100002', '500');
I get that there must be a syntax error. But where?
Thank you in advance for your help.