mysql 左連線,右連線,內連結,exists等

小亮520cl發表於2015-12-17
背景
  1. mysql> select * from grade;
  2. +----+-------+
  3. | no | grade |
  4. +----+-------+
  5. | 1 | 90 |
  6. | 2 | 80 |
  7. | 3 | 70 |
  8. +----+-------+
  9. 3 rows in set (0.00 sec)

mysql> select * from student;
  1. +----+------+
  2. | no | name |
  3. +----+------+
  4. | 1 | a |
  5. | 2 | b |
  6. | 3 | c |
  7. | 4 | d |
  8. +----+------+

內連結(查詢兩邊都有的資料) 等價於  where語句  等價於  join語句
mysql> select * from student s inner join grade g on s.no=g.no;
+----+------+----+-------+
| no | name | no | grade |
+----+------+----+-------+
|  1 | a    |  1 |    90 |
|  2 | b    |  2 |    80 |
|  3 | c    |  3 |    70 |
+----+------+----+-------+
3 rows in set (0.16 sec)


左連線(左表中所有資料,右表中對應資料)
mysql>  select * from student as s left join grade as 
    -> g on s.no=g.no; 
+----+------+------+-------+
| no | name | no   | grade |
+----+------+------+-------+
|  1 | a    |    1 |    90 |
|  2 | b    |    2 |    80 |
|  3 | c    |    3 |    70 |
|  4 | d    | NULL |  NULL |
+----+------+------+-------+
4 rows in set (0.00 sec)
  1. 左連結最佳化:
  2. 最佳化前:
  3. mysql> SELECT COUNT(c_user.uid) AS tp_count FROM `c_user` LEFT JOIN c_devices on c_user.last_did=c_devices.did LIMIT 1;
    +----------+
    | tp_count |
    +----------+
    |  4091879 |
    +----------+
    1 row in set (16.10 sec)
  1. 最佳化後:
  2. mysql> SELECT COUNT(c_user.uid) AS tp_count FROM `c_user`;
    +----------+
    | tp_count |
    +----------+
    |  4091879 |
    +----------+
    1 row in set (1.28 sec)





右連線(右表中所有資料,左表中對應資料) 
mysql> select * from student as s right join grade as g on s.no=g.no; 
+------+------+----+-------+
| no   | name | no | grade |
+------+------+----+-------+
|    1 | a    |  1 |    90 |
|    2 | b    |  2 |    80 |
|    3 | c    |  3 |    70 |
+------+------+----+-------+
3 rows in set (0.00 sec)



Mysql資料庫中的EXISTS和NOT EXISTS

金山面試題


  1. 題目如下:
  2. 資料庫1中存放著a類資料,資料庫2中存放著以天為單位劃分的表30張(比如table_20110909,table_20110910,table_20110911),總共是一個月的資料。表1中的a類資料中有一個欄位userid來唯一判別使用者身份,表2中的30張表(每張表結構相同)也有一個欄位userid來唯一識別使用者身份。如何判定a類資料庫的多少使用者在資料庫2中出現過?

  3. 1)各位高手能否說一下這道題的考點是什麼
  4. 2)能否說一下你們的實現思路或者關鍵的sql語句
select count(*) from 資料庫1.a類資料 
where exists (select 1 from 資料庫2.table_20110909 where userid = 資料庫1.a類資料.userid)
or exists (select 1 from 資料庫2.table_20110910 where userid = 資料庫1.a類資料.userid)
or exists (select 1 from 資料庫2.table_20110911 where userid = 資料庫1.a類資料.userid)



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29096438/viewspace-1873884/,如需轉載,請註明出處,否則將追究法律責任。

相關文章