I am creating a table in Oracle.
On doing the following insert I keep getting missing comma error but no comma is missing from what I can see
INSERT INTO driver
(employee_no, first_name, last_name, ni_no, telephone, hazardous_goods)
VALUES
(122085,'Norris','Vasyutichev','EE 91 44 59 G',01809 7872896,07610 2265827,'Y');
even with
INSERT INTO driver
(first_name, last_name, ni_no, hazardous_goods)
VALUES
('Norris','Vasyutichev','EE914459G','Y');
I get the missing comma error
Error at Command Line:27 Column:86
Error report:
SQL Error: ORA-00917: missing comma
00917. 00000 - "missing comma"