我有两个表table1
和table2
。 table1
个项目,并对table2
个交易进行评分。我想更新Table2
中的Table1
费率,但是Table2
同一项目中的许多交易我想要更新费率的上一个ID
例如
Table 1
ItemCode Name Rate
----------------------------
101 book 30
102 pen 10
Table 2
Id ItemCode Name Rate
------------------------------
1 101 book 40
2 101 book 35
3 101 book 20
so i want output :
ItemCode Name Rate
----------------------------
101 book 20
102 pen 10