真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

mysql中通過(guò)關(guān)聯(lián)表update數(shù)據(jù)的誤區(qū)測(cè)試是怎樣的

這篇文章給大家介紹MySQL中通過(guò)關(guān)聯(lián)表update數(shù)據(jù)的誤區(qū)測(cè)試是怎樣的,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

太康ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書(shū)未來(lái)市場(chǎng)廣闊!成為成都創(chuàng)新互聯(lián)公司的ssl證書(shū)銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:13518219792(備注:SSL證書(shū)合作)期待與您的合作!

關(guān)于update關(guān)聯(lián)表的寫(xiě)法存在很多誤區(qū),以前我自己也經(jīng)常犯錯(cuò)....
一般的寫(xiě)法有如下幾種:
update test1 set name =(select name from test2 where test1.id=test2.id);
update test1 a,test2 b set a.name=b.name where a.id=b.id;
update test2 set test2.name=(select name from test1 where test1.id=test2.id) where exists (select * from test1 where test1.id=test2.id);

一般來(lái)講這三種寫(xiě)法都沒(méi)問(wèn)題,只要在test1,和test2中name和id字段都是唯一的...
下面我們分別討論更改表和關(guān)聯(lián)表的情況:
首先,討論被關(guān)聯(lián)表有重復(fù)的情況:

mysql> select * from test1;
+------+------+
| id   | name |
+------+------+
|    1 | k1   |
|    2 | k2   |
|    3 | k3   |
|    4 | kkk  |
|    4 | k4   |
|    4 | k4   |
+------+------+
6 rows in set (0.00 sec)

mysql> select * from test2;
+------+------+
| id   | name |
+------+------+
|    1 | 2222 |
|    2 | 2222 |
|    3 | 2222 |
|    4 | 2222 |
+------+------+
4 rows in set (0.00 sec)


mysql> update test2 set name = (select test1.name from test1 where test1.id=test2.id)   
    -> ;
ERROR 1242 (21000): Subquery returns more than 1 row


mysql> update test2 a,test1 b set a.name=b.name where a.id=b.id;
Query OK, 4 rows affected (0.01 sec)
Rows matched: 4  Changed: 4  Warnings: 0

mysql> select * from test2;
+------+------+
| id   | name |
+------+------+
|    1 | k1   |
|    2 | k2   |
|    3 | k3   |
|    4 | kkk  |
+------+------+
4 rows in set (0.00 sec)

test1表中id=4的記錄有多個(gè)...且值也不一致.這個(gè)時(shí)候?qū)est1做為驅(qū)動(dòng)表,是不可取的..不管用什么語(yǔ)法,要么會(huì)報(bào)錯(cuò),要么就會(huì)只去驅(qū)動(dòng)表的重復(fù)的值的第一個(gè)值...




接著討論被更改表有多余值的情況
多余值是相對(duì)于更改條件而言的.比如只更改ID1-4的..而存在id=5的類似的情況;
mysql> select * from test2;
+------+---------+
| id   | name    |
+------+---------+
|    1 | k1      |
|    2 | k2      |
|    3 | k3      |
|    4 | kkk     |
|    5 | gaopeng |
+------+---------+
5 rows in set (0.00 sec)

mysql> select * from test1;
+------+------+
| id   | name |
+------+------+
|    1 | k1   |
|    2 | k2   |
|    3 | k3   |
+------+------+
3 rows in set (0.00 sec)

mysql> update test2 set test2.name=(select name from test1 where test1.id=test2.id);
Query OK, 2 rows affected (0.01 sec)
Rows matched: 5  Changed: 2  Warnings: 0

mysql> select * from test2;
+------+------+
| id   | name |
+------+------+
|    1 | k1   |
|    2 | k2   |
|    3 | k3   |
|    4 | NULL |
|    5 | NULL |
+------+------+
5 rows in set (0.00 sec)


可以看到,如果不加條件的update,會(huì)導(dǎo)致多余的數(shù)據(jù)被更改為null.
mysql> select * from test2;
+------+------+
| id   | name |
+------+------+
|    1 | rrr  |
|    2 | rrr  |
|    3 | rrr  |
|    4 | rrr  |
|    5 | rrr  |
+------+------+
5 rows in set (0.00 sec)


mysql> update test2 set test2.name=(select name from test1 where test1.id=test2.id) where exists (select * from test1 where test1.id=test2.id); 
Query OK, 3 rows affected (0.01 sec)
Rows matched: 3  Changed: 3  Warnings: 0

mysql> select * from test2;
+------+------+
| id   | name |
+------+------+
|    1 | k1   |
|    2 | k2   |
|    3 | k3   |
|    4 | rrr  |
|    5 | rrr  |
+------+------+
5 rows in set (0.00 sec)


所以要注意關(guān)聯(lián)更改時(shí)要注意的條件:
1.驅(qū)動(dòng)表不能有重復(fù)值.關(guān)聯(lián)表作為參考值,不能有重復(fù),不然取值時(shí)不知道取哪一個(gè)值
2.被更改表如有多余值時(shí),一定要加條件,不然,沒(méi)有被關(guān)聯(lián)到的數(shù)據(jù)會(huì)被更改為null;

關(guān)于mysql中通過(guò)關(guān)聯(lián)表update數(shù)據(jù)的誤區(qū)測(cè)試是怎樣的就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。


當(dāng)前名稱:mysql中通過(guò)關(guān)聯(lián)表update數(shù)據(jù)的誤區(qū)測(cè)試是怎樣的
當(dāng)前URL:http://weahome.cn/article/ggjsde.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部