hello!
As i am trying to insert multiple rows using following command
insert into customer(c_id,c_name,c_city,c-street)
values('C101','Hayes','Downtown','Main'),
('C102','Willum','Perryridge','North'),
('c103','Smit','Brooklyn','Park');
It always gives me an error that
[TEX]
ERROR at line 2:
command not properly ended
[/TEX]
Please tell me why this error is occuring & what's solution to it?
I am using ORACLE database for execution of this query
i.e. oracle work screen iSQL*Plus.