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

SQLite Having 子句

sqlite having 子句

having 子句允許指定條件來過濾將出現在最終結果中的分組結果。

where 子句在所選列上設置條件,而 having 子句則在由 group by 子句創建的分組上設置條件。

 

1. 語法

下面是 having 子句在 select 查詢中的位置:

select
from
where
group by
having
order by

在一個查詢中,having 子句必須放在 group by 子句之后,必須放在 order by 子句之前。下面是包含 having 子句的 select 語句的語法:

select column1, column2
from table1, table2
where [ conditions ]
group by column1, column2
having [ conditions ]
order by column1, column2

 

2. 范例

假設 company 表有以下記錄:

id          name        age         address     salary
----------  ----------  ----------  ----------  ----------
1           paul        32          california  20000.0
2           allen       25          texas       15000.0
3           teddy       23          norway      20000.0
4           mark        25          rich-mond   65000.0
5           david       27          texas       85000.0
6           kim         22          south-hall  45000.0
7           james       24          houston     10000.0
8           paul        24          houston     20000.0
9           james       44          norway      5000.0
10          james       45          texas       5000.0

下面是一個范例,它將顯示名稱計數小于 2 的所有記錄:

sqlite > select * from company group by name having count(name) < 2;

這將產生以下結果:

id          name        age         address     salary
----------  ----------  ----------  ----------  ----------
2           allen       25          texas       15000
5           david       27          texas       85000
6           kim         22          south-hall  45000
4           mark        25          rich-mond   65000
3           teddy       23          norway      20000

下面是一個范例,它將顯示名稱計數大于 2 的所有記錄:

sqlite > select * from company group by name having count(name) > 2;

這將產生以下結果:

id          name        age         address     salary
----------  ----------  ----------  ----------  ----------
10          james       45          texas       5000

下一節:sqlite distinct 關鍵字

sqlite教程

相關文章