insert into table select * from table where primarykey=1
I just want to copy one row to insert into the same table (i.e., I want to duplicate an ex
I would use below,
insert into ORDER_ITEM select * from ORDER_ITEM where ITEM_NUMBER =123;