如何在两个表中获取更新最后一个值

时间:2019-01-12 17:06:29

标签: php mysql

我有两个表table1table2table1个项目,并对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

0 个答案:

没有答案