Home >Backend Development >PHP Tutorial >mysql怎么同时更新2个表

mysql怎么同时更新2个表

WBOY
WBOYOriginal
2016-06-06 20:49:161394browse

想同时更新2个表,2表uid相同,修改a表name和b表nice,怎么破

回复内容:

想同时更新2个表,2表uid相同,修改a表name和b表nice,怎么破

<code>mysql> select * from aa;
+------+
| id   |
+------+
|    2 |
+------+
1 row in set (0.00 sec)

mysql> select * from bb;
+------+
| id   |
+------+
|    2 |
+------+
1 row in set (0.00 sec)

mysql> update aa,bb set aa.id=3, bb.id=3 where aa.id=bb.id;
Query OK, 2 rows affected (0.02 sec)
Rows matched: 2  Changed: 2  Warnings: 0

mysql> select * from bb;
+------+
| id   |
+------+
|    3 |
+------+
1 row in set (0.00 sec)

mysql> select * from aa;
+------+
| id   |
+------+
|    3 |
+------+
1 row in set (0.00 sec)
</code>

如果需要强制同步操作,可以使用事务

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn