MySQL多表更新應該如何是實現呢?對於很多剛接觸MySQL數據庫的新人來說,都會有這樣的疑問,下面就為您介紹MySQL多表更新的方法,供您參考。
MySQL多表更新:
- update contact c, contactdroit cd
- set c.user_name = '$username', c.nom = '$lastname', c.prenom = '$firstname', c.passcode = '$password', cd.droit_id = '$droitid'
- where c.contact_id = '$id' and c.contact_id = cd.contact_id;
示例:
- mysql> create table one(id int(10), name varchar(20));
- Query OK, 0 rows affected (0.03 sec)
- mysql> create table two(id int(10), name varchar(20));
- Query OK, 0 rows affected (0.05 sec)
- mysql> insert one value(1, '1');
- Query OK, 1 row affected (0.00 sec)
- mysql> insert two value(22, '22');
- Query OK, 1 row affected (1.02 sec)
- mysql> update one o, two t set o.name='oo', t.name='tt';
- Query OK, 2 rows affected (0.00 sec)
- Rows matched: 2 Changed: 2 Warnings: 0
- mysql> select * from one;
- +------+------+
- | id | name |
- +------+------+
- | 1 | oo |
- +------+------+
- 1 row in set (0.00 sec)
- mysql> select * from two;
- +------+------+
- | id | name |
- +------+------+
- | 22 | tt |
- +------+------+
- 1 row in set (0.00 sec)
Mysql多表查詢的實現
Mysql臨時表的用法
拆表用的MySQL存儲過程
深入探討MySQL鎖機制
單表多字段MySQL模糊查詢的實現