希望有人可以帮助我,我想复制同一张表中的行,并且该表与另一个表有关系,我必须相应地复制相关行:
表格1
table1Id table0Id otherColumn
1 3 8
2 3 9
3 4 6
我用 table0Id = 3 复制了行
表格1
table1Id table0Id otherColumn
1 3 8
2 3 9
3 4 6
-------------------------
4 3 8
5 3 9
我想根据 Table1 Id 对 Table2 做同样的事情,如下所示:
表2
table2Id table1Id otherColomn
1 1 0
2 2 5
3 3 8
表2
table2Id table1Id otherColomn
1 1 0
2 2 5
3 3 8
-----------------------
4 4 new Id 0
5 5 new Id 5
如您所见,第 1 行和第 2 行被复制到 table2 中,但它们具有来自 table1 中新添加行的新 ID。我知道如何做第一部分,但我被困在第二部分。