Wondering if there is a way to insert a row into a table from another, with exception of one column?
This is of course easy with a limitied amount of columns, but gets k
using Oracle
DECLARE CURSOR CUR_D IS SELECT * FROM TABLE WHERE id = some id; ROW_D CUR_D%ROWTYPE; BEGIN OPEN CUR_D; FETCH CUR_D INTO ROW_D; CLOSE CUR_D; ROW_D.column := 'some data'; INSERT INTO some table VALUES ROW_D; END; /