update b set b.col1 = b.col1 + a.col1
form tlba a join tlbb b on a.col = b.col
where b.col2 = a.col2 and b.col in (select a.col from a.col)
------------------------------------------------------------------
這是我曾經用過的一個動態更新的例子,有點復雜,便可以解決一些高難度問題,
時間久了,也沒寫的有誤,不過思想就是這樣,自憶想想。
[em11]