2011年11月16日 星期三

[SQL].A table 的部份欄位 update 到 B table

假設, 我有一堆的欄位內容, 要從 A table 更新到 B table, 有沒有可能一個 SQL 的句子就搞定?


參考看看:
update b
set b.title = a.title
from demo_a_tablename a
inner join demo_b_tablename b on b.id=33
where a.id = 5925


很怕會下錯, 改到一堆奇怪的東西
所以, 要先用 select 一下做測試:
select b.*
from demo_a_tablename a
inner join demo_b_tablename b on b.id=33
where a.id = 5925

沒有留言:

張貼留言

Facebook 留言板