HI,
I'm trying to insert multiple records in one statemtn to my my informix db.
I tried the following
insert to [table] (col1,col2,col3)
values ('value1','name1'),('value2','name2')
but it dit nod work
I also tried union
insert to [table] (col1,col2,col3)
select ('value1','name1')
union...