精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

SQL EXISTS() 函數

sql exists() 函數

exists 運算符用于判斷查詢子句是否有記錄,如果有一條或多條記錄存在返回 true,否則返回 false。

 

1. exists() 語法

select column_name(s)
from table_name
where exists
(select column_name from table_name where condition);

樣本數據庫

在本教程中,我們將使用 yapf 樣本數據庫。

下面是選自 "websites" 表的數據:

+----+--------------+---------------------------+-------+---------+
| id | name         | url                       | alexa | country |
+----+--------------+---------------------------+-------+---------+
| 1  | google       | https://www.google.cm/    | 1     | usa     |
| 2  | 淘寶          | https://www.taobao.com/   | 13    | cn      |
| 3  | 碩編程      | http://www.090948.com/  | 4689  | cn      |
| 4  | 微博          | http://weibo.com/         | 20    | cn      |
| 5  | facebook     | https://www.facebook.com/ | 3     | usa     |
+----+---------------+---------------------------+-------+---------+

下面是 "access_log" 網站訪問記錄表的數據:

+-----+---------+-------+------------+
| aid | site_id | count | date       |
+-----+---------+-------+------------+
|   1 |       1 |    45 | 2016-05-10 |
|   2 |       3 |   100 | 2016-05-13 |
|   3 |       1 |   230 | 2016-05-14 |
|   4 |       2 |    10 | 2016-05-14 |
|   5 |       5 |   205 | 2016-05-14 |
|   6 |       4 |    13 | 2016-05-15 |
|   7 |       3 |   220 | 2016-05-15 |
|   8 |       5 |   545 | 2016-05-16 |
|   9 |       3 |   201 | 2016-05-17 |
+-----+---------+-------+------------+

 

2. exists() 范例

現在我們想要查找總訪問量(count 字段)大于 200 的網站是否存在。

select websites.name, websites.country 
from websites 
where exists (select count from access_log where websites.id = access_log.site_id and count > 200);

執行結果:
+---------------+-------------+
|   name        | country     |
+---------------+-------------+
| google        |    usa      |
| 碩編程       |     cn      |
| facebook      |    usa      |
+---------------+-------------+

exists 可以與 not 一同使用,查找出不符合查詢語句的記錄:

select websites.name, websites.country
from websites 
where not exists (select count from access_log where websites.id = access_log.site_id and count > 200);

執行結果:
+---------------+-------------+
|   name        |    country  |
+---------------+-------------+
|   淘寶         |     cn      |
|   微博         |     cn      |
+---------------+-------------+

下一節:sql ucase() 函數

sql 教程

相關文章