やっていきましょう。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
#(11)集約関数 -- (1)2017/1の合計売上金額 select sum(amount) #ここは一番最後にsum関数を使う from orders where order_time>='2017-01-01 00:00:00' and order_time<'2017-02-01 00:00:00'; -- (2)全商品の平均値を求める select avg(price) from products; -- (3)全商品の最小値を求める select min(price) from products; -- (4)全商品の最大値を求める select max(price) from products; -- (5)ユーザー数をカウントする select count(*) from users; -- (5)女性ユーザー数をカウントする select count(*) from users where gender=2; -- (6)2017/1のユニークアクセスユーザー数をカウントする select count(distinct user_id) #distinctは被りを削除する from access_logs where request_month='2017-01-01'; |
The following two tabs change content below.
Keita N
最新記事 by Keita N (全て見る)
- 2024/1/13 ビットコインETFの取引開始:新たな時代の幕開け - 2024年1月13日
- 2024/1/5 日本ビジネスにおける変革の必要性とその方向性 - 2024年1月6日
- 2024/1/3 アメリカ債権ETFの見通しと最新動向 - 2024年1月3日