iT邦幫忙

2023 iThome 鐵人賽

DAY 10
0
自我挑戰組

30 天學習資料庫系列 第 10

SQL聚合函數

  • 分享至 

  • xImage
  •  

AGGREGATE function聚合函數
count
avg
sum
max
min

select count(*) from employee;
select count(sup_id) from employee;
-- 取得員工人數

select count(*) from employee where birth >'1970-01-01' and sex = 'F';
-- 取得所有出生於1970-01-01之後的女性員工人數

select avg(salary) from employee;
-- 取得員工平均薪水
select sum(salary) from employee;
-- 取得員工薪水總和

select max(salary) from employee;
-- 取得最高的薪水


上一篇
練習創建很簡單的資料庫
下一篇
SQL wildcards
系列文
30 天學習資料庫30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言