how do i add or insert multiple rows in two columns, at the same time? i am trying this
insert into Gwish_bal(Account_code,Flag) values (
('10192885','I'),
('10146883','I')
);
and it is not working i keep getting ORA-00907: missing right parenthesis. i want to insert a thousand numbers and flag them I. the output i need is a table which looks like this
a
ccount code flag
800000008 I
800000009 I
....
800100000 I