mysql update不能直接使用select的結果

在sql server中,我們可是使用以下update語句對錶進行更新: update a set a.xx= (select yy from b) ; 但是在mysql中,不能直接使用set select的結果,必須使用inner join: update a inner join (select yy from b) c set a.xx = c.yy   例: update mb_tarif
相關文章
相關標籤/搜索