Вы ищете это?
insert into the_table (col1, col2, col3)
select nextval('the_table_id_seq'), x1, x2
from final_dataset;
Если col1
- это столбец serial
или identity
, я бы удалил его полностью:
insert into the_table (col2, col3)
select x1, x2
from final_dataset;