I have a table product(id_product , name );
I have another one: productHistory (id_H , id_product , name);
I wanna create a query (db2) to insert all the rows of product in productHistory;
I have a sequence product_history_seq
I wanna do something like that:
insert into productHistory
(id_h , , id_product , name)
values ( product_history_seq.nextval,..
Or,
select (id_product , name) from product
What's the correct query?
"insert into yourtableone select default, val1, val2 from yourtabletwo" and declare the id as genereated by default
I believe you are looking for:
Make id_h auto increment and try this
id_h will auto-increment no need to put it in query
Hope it will help
That works