SQL实现交,并,差操作
生活随笔
收集整理的這篇文章主要介紹了
SQL实现交,并,差操作
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
有的數(shù)據(jù)庫不支持intersect,except,所以交集,和差集使用嵌套查詢來做比較靠譜。 a表和b表具有完全一樣的結(jié)構(gòu)
mysql> desc a;
+-------+-------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| tel | varchar(11) | YES | | NULL | |
+-------+-------------+------+-----+---------+----------------+
2 rows in set (0.00 sec)mysql> desc b;
+-------+-------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| tel | varchar(11) | YES | | NULL | |
+-------+-------------+------+-----+---------+----------------+
2 rows in set (0.01 sec)
mysql> select a.tel from a,b where a.tel = b.tel; +------+ | tel | +------+ | 2 | +------+ 1 row in set (0.00 sec)
//也可以使用嵌套查詢
mysql> select a.tel from a where a.tel in (select b.tel from b);
+------+
| tel? |
+------+
| 2??? |
+------+
1 row in set (0.00 sec)
//也可以
mysql> select a.tel from a where exists (select * from b where a.tel = b.tel);
+------+
| tel? |
+------+
| 2??? |
+------+
//當(dāng)然intersect有可能是不支持的
mysql> select a.tel from a intersect select b.tel from b;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'select b.tel from b' at line
//
//同樣,except也不一定支持
mysql> select a.tel from a except select b.tel form b;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'select b.tel form b' at line
a表和b表中的數(shù)據(jù)不同,現(xiàn)在要查詢a表和b表的電話號碼的交,并,差集:
mysql> select * from a; +----+------+ | id | tel | +----+------+ | 1 | 1 | | 2 | 2 | +----+------+ 2 rows in set (0.00 sec)mysql> select * from b; +----+------+ | id | tel | +----+------+ | 1 | 2 | | 2 | 3 | +----+------+ 2 rows in set (0.01 sec)交集
//聯(lián)合查詢mysql> select a.tel from a,b where a.tel = b.tel; +------+ | tel | +------+ | 2 | +------+ 1 row in set (0.00 sec)
//也可以使用嵌套查詢
mysql> select a.tel from a where a.tel in (select b.tel from b);
+------+
| tel? |
+------+
| 2??? |
+------+
1 row in set (0.00 sec)
//也可以
mysql> select a.tel from a where exists (select * from b where a.tel = b.tel);
+------+
| tel? |
+------+
| 2??? |
+------+
//當(dāng)然intersect有可能是不支持的
mysql> select a.tel from a intersect select b.tel from b;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'select b.tel from b' at line
并集
//MySQL從4.0以后是支持union,union all的,其實實現(xiàn)union是非常復(fù)雜的 mysql> select a.tel from a union select b.tel from b; +------+ | tel | +------+ | 1 | | 2 | | 3 | +------+ 3 rows in set (0.00 sec)//
差集
except所代表的差集,是在a中出現(xiàn)但是不在b中出現(xiàn)的記錄;
mysql> select a.tel from a where a.tel not in ( select b.tel from b); +------+ | tel | +------+ | 1 | +------+ 1 row in set (0.00 sec)//同樣,except也不一定支持
mysql> select a.tel from a except select b.tel form b;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'select b.tel form b' at line
轉(zhuǎn)載于:https://www.cnblogs.com/fangpengchengbupter/p/9356070.html
總結(jié)
以上是生活随笔為你收集整理的SQL实现交,并,差操作的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 掌上公交app怎么用(掌上英雄联盟)
- 下一篇: 网络切片,切开5G万亿级市场“大面包”