程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL多表更新示例

MySQL多表更新示例

編輯:MySQL綜合教程

MySQL多表更新應該如何是實現呢?對於很多剛接觸MySQL數據庫的新人來說,都會有這樣的疑問,下面就為您介紹MySQL多表更新的方法,供您參考。

MySQL多表更新:

  1. update contact c, contactdroit cd   
  2. set c.user_name = '$username', c.nom = '$lastname', c.prenom = '$firstname', c.passcode = '$password', cd.droit_id = '$droitid'   
  3. where c.contact_id = '$id' and c.contact_id = cd.contact_id;  

示例:

  1. mysql> create table one(id int(10), name varchar(20));  
  2. Query OK, 0 rows affected (0.03 sec)  
  3.  
  4. mysql> create table two(id int(10), name varchar(20));  
  5. Query OK, 0 rows affected (0.05 sec)  
  6.  
  7. mysql> insert one value(1, '1');  
  8. Query OK, 1 row affected (0.00 sec)  
  9.  
  10. mysql> insert two value(22, '22');  
  11. Query OK, 1 row affected (1.02 sec)  
  12.  
  13. mysql> update one o, two t set o.name='oo', t.name='tt';  
  14. Query OK, 2 rows affected (0.00 sec)  
  15. Rows matched: 2 Changed: 2 Warnings: 0  
  16.  
  17. mysql> select * from one;  
  18. +------+------+  
  19. | id   | name |  
  20. +------+------+  
  21. |    1 | oo   |  
  22. +------+------+  
  23. 1 row in set (0.00 sec)  
  24.  
  25. mysql> select * from two;  
  26. +------+------+  
  27. | id   | name |  
  28. +------+------+  
  29. |   22 | tt   |  
  30. +------+------+  
  31. 1 row in set (0.00 sec)  
  32.  

Mysql多表查詢的實現

Mysql臨時表的用法

拆表用的MySQL存儲過程

深入探討MySQL鎖機制

單表多字段MySQL模糊查詢的實現

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved