INSERT INTO Countries (Country, Capital, Cities)
VALUES ('Philippines','Manila',122),
('USA','Washington',19495),
('Brazil','Brasilia',1642),
('Latvia','Riga',9),
('Egypt','Cairo',124)
;
I've tried removing the (Country, Capital, Cities)
, sticking it back on, putting them all in the same line, putting bigger indents, spacing them out. nothing. It keeps throwing me this error: ORA-00933: SQL command not properly ended.
. What's wrong with my code?