我正在尝试将数据插入表中:
INSERT INTO CIVILSTATUS
(CivilStatusID, CivilStatusDesc)
VALUES (1, 'Single'),
(2, 'Married'),
(3, 'Separate'),
(4, 'Widower');
但我收到了这个错误:
Error SQL: ORA-00933: comand SQL not properly ended
00933. 00000 - "SQL command not properly ended"
我做对了还是我的语法有错误?