91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MySQL中將多個select語句的查詢結果合并一起的方法

發布時間:2020-05-25 17:32:34 來源:網絡 閱讀:3569 作者:三月 欄目:MySQL數據庫

下文給大家帶來有關MySQL中將多個select語句的查詢結果合并一起的方法內容,相信大家一定看過類似的文章。我們給大家帶來的有何不同呢?一起來看看正文部分吧,相信看完MySQL中將多個select語句的查詢結果合并一起的方法你一定會有所收獲。

1. 背景

   * 全并查詢結果是將多個 select 語句的查詢結果合并到一起。

   * 參與合并的結果集需要字段統一。

   * 字段可以用空字符串''代替。


2. 合并查詢結果實戰 [ users1 and users2 ]

   * 查看 users1 表和 users2 表結構

mysql> desc users1;
+-------+---------------+------+-----+---------+----------------+
| Field | Type          | Null | Key | Default | Extra          |
+-------+---------------+------+-----+---------+----------------+
| id    | bigint(20)    | NO   | PRI | NULL    | auto_increment |
| name  | varchar(64)   | NO   |     | NULL    |                |
| sex   | enum('M','F') | NO   |     | NULL    |                |
| age   | int(11)       | NO   |     | NULL    |                |
+-------+---------------+------+-----+---------+----------------+
4 rows in set (0.00 sec)

mysql> desc users2;
+-------+---------------+------+-----+---------+----------------+
| Field | Type          | Null | Key | Default | Extra          |
+-------+---------------+------+-----+---------+----------------+
| id    | bigint(20)    | NO   | PRI | NULL    | auto_increment |
| name  | varchar(64)   | NO   |     | NULL    |                |
| sex   | enum('M','F') | NO   |     | NULL    |                |
| age   | int(11)       | NO   |     | NULL    |                |
+-------+---------------+------+-----+---------+----------------+
4 rows in set (0.01 sec)


   * 查看 users1 表和 users2 表數據

    users1和users2表中有相同字段 tom

mysql> select * from users1;
+----+------+-----+-----+
| id | name | sex | age |
+----+------+-----+-----+
|  1 | tom  | M   |  25 |
|  2 | jak  | F   |  42 |
+----+------+-----+-----+
2 rows in set (0.00 sec)

mysql> select * from users2;
+----+-------+-----+-----+
| id | name  | sex | age |
+----+-------+-----+-----+
|  1 | tom   | M   |  25 |
|  2 | lisea | M   |  42 |
+----+-------+-----+-----+
2 rows in set (0.00 sec)


   * union 合并并去重

MySQL中將多個select語句的查詢結果合并一起的方法

mysql> (select * from users1) union (select * from users2);
+----+-------+-----+-----+
| id | name  | sex | age |
+----+-------+-----+-----+
|  1 | tom   | M   |  25 |
|  2 | jak   | F   |  42 |
|  2 | lisea | M   |  42 |
+----+-------+-----+-----+
3 rows in set (0.00 sec)


   * union all 只全并不去重

MySQL中將多個select語句的查詢結果合并一起的方法

mysql> (select * from users1) union all (select * from users2);
+----+-------+-----+-----+
| id | name  | sex | age |
+----+-------+-----+-----+
|  1 | tom   | M   |  25 |
|  2 | jak   | F   |  42 |
|  1 | tom   | M   |  25 |
|  2 | lisea | M   |  42 |
+----+-------+-----+-----+
4 rows in set (0.01 sec)


   * 查看union  性能分析

      [ 使用了臨時表 ]

mysql> explain (select * from users1) union (select * from users2);
+----+--------------+------------+------------+------+---------------+------+---------+------+------+----------+-----------------+
| id | select_type  | table      | partitions | type | possible_keys | key  | key_len | ref  | rows | filtered | Extra           |
+----+--------------+------------+------------+------+---------------+------+---------+------+------+----------+-----------------+
|  1 | PRIMARY      | users1     | NULL       | ALL  | NULL          | NULL | NULL    | NULL |    2 |   100.00 | NULL            |
|  2 | UNION        | users2     | NULL       | ALL  | NULL          | NULL | NULL    | NULL |    2 |   100.00 | NULL            |
| NULL | UNION RESULT | <union1,2> | NULL       | ALL  | NULL        | NULL | NULL    | NULL | NULL |     NULL | Using temporary |
+----+--------------+------------+------------+------+---------------+------+---------+------+------+----------+-----------------+
3 rows in set, 1 warning (0.01 sec)


   * 查看union all 性能分析

     [ 未使用臨時表 ]

mysql> explain (select * from users1) union all (select * from users2);
+----+-------------+--------+------------+------+---------------+------+---------+------+------+----------+-------+
| id | select_type | table  | partitions | type | possible_keys | key  | key_len | ref  | rows | filtered | Extra |
+----+-------------+--------+------------+------+---------------+------+---------+------+------+----------+-------+
|  1 | PRIMARY     | users1 | NULL       | ALL  | NULL          | NULL | NULL    | NULL |    2 |   100.00 | NULL  |
|  2 | UNION       | users2 | NULL       | ALL  | NULL          | NULL | NULL    | NULL |    2 |   100.00 | NULL  |
+----+-------------+--------+------------+------+---------------+------+---------+------+------+----------+-------+
2 rows in set, 1 warning (0.01 sec)


3. union 與 union all 總結

   * union 相對于 union all多了一步去重操作,此操作會創建臨時表,降低性能。

   * 當兩邊結果集數據相對都確定了唯一性,推薦使用union all。


4. 總結

以需求驅動技術,技術本身沒有優略之分,只有業務之分。

對于上文關于MySQL中將多個select語句的查詢結果合并一起的方法,大家覺得是自己想要的嗎?如果想要了解更多相關,可以繼續關注我們的行業資訊板塊。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

牟定县| 开平市| 江口县| 五家渠市| 定陶县| 宕昌县| 万安县| 承德市| 新田县| 京山县| 阳泉市| 宜城市| 涟水县| 田林县| 孟村| 柳河县| 安西县| 镇赉县| 白银市| 招远市| 泰和县| 措美县| 镇安县| 宁城县| 长乐市| 崇文区| 玛沁县| 罗江县| 怀集县| 揭西县| 绥芬河市| 金秀| 新野县| 香河县| 邹城市| 阿尔山市| 定州市| 贞丰县| 石楼县| 吴川市| 鄂温|