I've a homework from school to do and a big problem with inserting the data into my table. The sql-file has this query:
insert into abflug (AB_DATUM,F_BEZ,HERST,TYP,SER_NR,PER_NR,AB_ZEIT) values
('06.07.13','LH-888','Boeing','B747','9fg-he-ztu8',10010071,11.23);
insert into abflug (AB_DATUM,F_BEZ,HERST,TYP,SER_NR,PER_NR,AB_ZEIT) values
('08.10.13','LH-238','Airbus','A320','z3et-bwe7',10010072,22.06);
insert into abflug (AB_DATUM,F_BEZ,HERST,TYP,SER_NR,PER_NR,AB_ZEIT) values
('13.11.13','LH-341','Boeing','B737','ba23-0012',10010001,10.23);
insert into abflug (AB_DATUM,F_BEZ,HERST,TYP,SER_NR,PER_NR,AB_ZEIT) values
('14.11.13','LH-358','Boeing','B737','ba23-0012',10010001,08.17);
insert into abflug (AB_DATUM,F_BEZ,HERST,TYP,SER_NR,PER_NR,AB_ZEIT) values
('13.11.13','LH-553','Boeing','B777','xv23-0889',10010002,16.53);
insert into abflug (AB_DATUM,F_BEZ,HERST,TYP,SER_NR,PER_NR,AB_ZEIT) values
('15.11.13','LH-421','Boeing','B777','xv56-3142',10010002,14.45);
insert into abflug (AB_DATUM,F_BEZ,HERST,TYP,SER_NR,PER_NR,AB_ZEIT) values
('17.11.13','LH-789','Airbus','A330','45-6789',10010003,8.11);
insert into abflug (AB_DATUM,F_BEZ,HERST,TYP,SER_NR,PER_NR,AB_ZEIT) values
('14.11.13','LH-112','Boeing','B737','ba23-0034',10010001,8.14);
insert into abflug (AB_DATUM,F_BEZ,HERST,TYP,SER_NR,PER_NR,AB_ZEIT) values
('17.11.13','LH-421','Boeing','B777','xv23-0889',10010002,16.26);
insert into abflug (AB_DATUM,F_BEZ,HERST,TYP,SER_NR,PER_NR,AB_ZEIT) values
('18.11.13','LH-223','Airbus','A380','ab-45-6xf',10010004,09.45);
insert into abflug (AB_DATUM,F_BEZ,HERST,TYP,SER_NR,PER_NR,AB_ZEIT) values
('19.11.13','LH-634','Airbus','A350','5478-awe3',10010005,20.25);
insert into abflug (AB_DATUM,F_BEZ,HERST,TYP,SER_NR,PER_NR,AB_ZEIT) values
('18.02.14','LH-238','Airbus','A320','z3et-bwe7',10010072,23.06);
Everytime I want to run it in the SQL Workshop on my Oracle Application Express 11g I am getting this error:
ORA-00911: invalid character
Is there an error in the syntax? Am I forgetting some parentheses? Or something else? This is the infos about the table, in which I want to insert the data into: enter image description here
I would be very thankful for your help. I am just starting to learn SQL at my class. Thank you!