Good morning / afternoon all.
I need to perform the following task within one table. I will put an example to make it easier.
Table1: IDCol, DescCol, DescCol2
1 BLA PF1
1 BLE PF2
2 CA PF3
3 CE PF4
I need to create a QUERY that will insert new rows, with IDCol=4, but copying the values of the DescCol and DescCol2 of the rows with IDCol=1. So it should introduce two new rows, and the end table would be:
Table1: IDCol, DescCol, DescCol2
1 BLA PF1
1 BLE PF2
2 CA PF3
3 CE PF4
4 BLA PF1
4 BLE PF2
Thanks in advance.