HI,
I'm trying to insert multiple records in one statemtn to my my informix db.
I tried the following
insert to
(col1,col2,col3)
values ('value1','name1'),('value2','name2')
but it dit nod work
I also tried union
insert to
(col1,col2,col3)
select ('value1','name1')
union
select('value2','name2')
but it did not work either. any ideas?
TIA
I'm trying to insert multiple records in one statemtn to my my informix db.
I tried the following
insert to
values ('value1','name1'),('value2','name2')
but it dit nod work
I also tried union
insert to
select ('value1','name1')
union
select('value2','name2')
but it did not work either. any ideas?
TIA