Home >Database >Mysql Tutorial >SQL两个表之间的更新:用一个表的字段更新另一个表的字段

SQL两个表之间的更新:用一个表的字段更新另一个表的字段

WBOY
WBOYOriginal
2016-06-07 17:10:011395browse

SQLmdash;mdash;两个表之间的更新:用一个表的字段更新另一个表的字段

--1. 这种写法相当于一个 Left join, 以外面的where为更新条数。   

--   注意! 如果内面的表的(where之后取得的)条数比外面表的(where之后取得的)条数少, 会造成 不满足=条件的记录 赋给 null 值。  

--   要想不出现错误地赋 NULL 值,, 必须在外面加一个 in ( select ... ) , 强制内外表的记录一致。  

--2. 这种写法轻松, 而且不易出错。

linux

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
Previous article:SQL锁和并发Next article:一次Oracle数据恢复实践