mysql實現2個表的欄位同步.

來源:互聯網
上載者:User

網路上找的文章如下:

在MySQL裡,不可以修改同一個表並使用SELECT語句.詳情查看http://dev.mysql.com/doc/mysql/en/UPDATE.html

可以選用JOIN來實現,例證如下

用SELECT的原語句:

update spms.user

set DirectReport=(select DirectReport from spms.user where UserName='%s')

where UserName in (select UserName from spms.user where DirectReport='%s')

選用JOIN來實現的語句:

update spms.user as u1

inner join spms.user as u2 on u1.DirectReport= u2.UserName

set u1.DirectReport=u2.DirectReport where u2.UserName='%s'

 

 

執行個體說明:

功能需要實現為 有2個表 一個是使用者表 user 一個是 照片表 photos 需要把 照片表的幾個欄位更新到 user表中去,實現

直接從user表中讀取 帳戶圖片功能,減少 顯示時候的 資料庫連接查詢消耗.

sql代碼如下:

 

UPDATE star_user AS u INNER JOIN star_photos AS p ON u.uid=p.uid AND p.is_cover=1 SET u.photo_id=p.id,u.photo_origin=p.photo_origin,u.photo_big=p.photo_big,u.photo_small=p.photo_small WHERE u.uid=1

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.