I don't know that why I am unable to get these values inserted into the table.For below table:
create table info
(serial_no number(10),
name varchar(10));
insert into info(serial_no,name)
values(1,'g'),(2,'u'); /*For this query an error is coming*/
ERROR:
ORA-00933: SQL command not properly ended