select
storecd as 店舗CD, -- 店舗コード
to_char(sum(abs(price)*quantity), 'fm999,999,999,999') as 売上金額, -- 期間内の店舗ごとの売上金額
to_char(sum(quantity), 'fm999,999,999,999') as 数量, -- 期間内の店舗ごとの販売数量
to_char(round(cast(sum(abs(price)*quantity) as decimal)/sum(quantity), 2), 'fm999,999,999,999.9') as 一品単価, -- 期間内の店舗ごとの一品あたりの平均単価
to_char(count(distinct receipt), 'fm999,999,999,999') as バスケット数, -- 期間内の店舗ごとのレシート数をカウント
to_char(round(cast(sum(abs(price)*quantity) as decimal)/count(distinct receipt), 2), 'fm999,999,999,999.9') as バスケット単価, -- 期間内の店舗ごとのバスケットあたりの平均金額
to_char(round(cast(sum(quantity) as decimal)/count(distinct receipt), 2), 'fm999,999,999,999.9') as 買上点数, -- 期間内の店舗ごとのバスケットあたりの平均購入商品数
to_char(count(distinct customer), 'fm999,999,999,999') as 会員数 -- 期間内の店舗ごとの会員数
from posdata -- 対象テーブル:POSデータ
where ymd >= 20240301 and ymd < 20250301 -- 集計対象期間:2024年3月1日から2025年2月28日まで
group by ROLLUP(storecd) -- 店舗コードでグループ化、小計(全店舗)算出
order by 店舗CD -- 店舗コードを使って昇順でソート
select
master_store.storename as 店舗名, -- 店舗マスタテーブルから店舗名を取得
to_char(thisyear.売上金額, 'fm999,999,999,999') as 当年売上金額, -- 当年の売上金額
to_char(lastyear.売上金額, 'fm999,999,999,999') as 前年売上金額, -- 前年の売上金額
round((cast(thisyear.売上金額 as decimal)/cast(lastyear.売上金額 as decimal))*100, 1) || '%' as 売上金額_前年比, -- 売上金額の前年比を計算し、%表示
to_char(thisyear.数量, 'fm999,999,999,999') as 当年売上数量, -- 当年の売上数量
to_char(lastyear.数量, 'fm999,999,999,999') as 前年売上数量, -- 前年の売上数量
round((cast(thisyear.数量 as decimal)/cast(lastyear.数量 as decimal)) * 100, 1) || '%' as 数量_前年比, -- 売上数量の前年比を計算し、%表示
to_char(round(thisyear.一品単価, 2), 'fm999,999,999,999.9') as 当年一品単価, -- 当年の一品単価
to_char(round(lastyear.一品単価, 2), 'fm999,999,999,999.9') as 前年一品単価, -- 前年の一品単価
round((cast(thisyear.一品単価 as decimal)/cast(lastyear.一品単価 as decimal)) * 100, 1) || '%' as 一品単価_前年比, -- 売上数量の前年比を計算し、%表示
to_char(thisyear.バスケット数, 'fm999,999,999,999') as 当年バスケット数, -- 当年のバスケット数
to_char(lastyear.バスケット数, 'fm999,999,999,999') as 前年バスケット数, -- 前年のバスケット数
round((cast(thisyear.バスケット数 as decimal)/cast(lastyear.バスケット数 as decimal)) * 100, 1) || '%' as バスケット数_前年比, -- バスケット数の前年比を計算し、%表示
to_char(round(thisyear.バスケット単価, 2), 'fm999,999,999,999.9') as 当年バスケット単価, -- 当年のバスケット単価
to_char(round(lastyear.バスケット単価, 2), 'fm999,999,999,999.9') as 前年バスケット単価, -- 前年のバスケット単価
round((cast(thisyear.バスケット単価 as decimal)/cast(lastyear.バスケット単価 as decimal)) * 100, 1) || '%' as バスケット単価_前年比, -- バスケット単価の前年比を計算し、%表示
to_char(round(thisyear.買上点数, 2), 'fm999,999,999,999.9') as 当年買上点数, -- 当年の買上点数
to_char(round(lastyear.買上点数, 2), 'fm999,999,999,999.9') as 前年買上点数, -- 前年の買上点数
round((cast(thisyear.買上点数 as decimal)/cast(lastyear.買上点数 as decimal)) * 100, 1) || '%' as 当年買上点数_前年比, -- 買上点数の前年比を計算し、%表示
to_char(thisyear.会員数, 'fm999,999,999,999') as 当年会員数, -- 当年の会員数
to_char(lastyear.会員数, 'fm999,999,999,999') as 前年会員数, -- 前年の会員数
round((cast(thisyear.会員数 as decimal)/cast(lastyear.会員数 as decimal)) * 100, 1) || '%' as 会員数_前年比 -- 会員数の前年比を計算し、%表示
from
(
select -- 当年の売上データを取得するサブクエリ
coalesce(storecd,0) as 店舗CD, -- 店舗コード(NULLの場合は0に置換)
sum(abs(price)*quantity) as 売上金額, -- 売上金額を計算
sum(quantity) as 数量, -- 数量を計算
cast(売上金額 as decimal)/数量 as 一品単価, -- 一品単価を計算
count(distinct receipt) as バスケット数, -- バスケット数を計算
cast(売上金額 as decimal)/バスケット数 as バスケット単価, -- バスケット単価を計算
cast(数量 as decimal)/バスケット数 as 買上点数, -- 買上点数を計算
count(distinct customer) as 会員数 -- 会員数を計算
from posdata -- 集計対象データ
where ymd >= 20240301 and ymd < 20250301 -- 集計対象期間:2024年3月1日~2025年2月28日
group by ROLLUP(storecd) -- 店舗コードでグループ化し、小計を算出
) as thisyear
join
(
select -- 前年の売上データを取得するサブクエリ
coalesce(storecd,0) as 店舗CD, -- 店舗コード(NULLの場合は0に置換)
sum(abs(price)*quantity) as 売上金額, -- 売上金額を計算
sum(quantity) as 数量, -- 数量を計算
cast(売上金額 as decimal)/数量 as 一品単価, -- 一品単価を計算
count(distinct receipt) as バスケット数, -- バスケット数を計算
cast(売上金額 as decimal)/バスケット数 as バスケット単価, -- バスケット単価を計算
cast(数量 as decimal)/バスケット数 as 買上点数, -- 買上点数を計算
count(distinct customer) as 会員数 -- 会員数を計算
from posdata -- 集計対象データ
where ymd >= 20230301 and ymd < 20240301 -- 集計対象期間:2023年3月1日~2024年2月28日
group by ROLLUP(storecd)
) as lastyear
on thisyear.店舗CD = lastyear.店舗CD -- 当年と前年のデータで店舗コードを結合
join master_store on thisyear.店舗CD = master_store.storecd -- 店舗マスタテーブルと結合
order by thisyear.店舗CD -- 店舗コードで昇順にソート
・目的: 2つのSQLと同様に、店舗ごとの売上などを集計し、前年同月比を計算し、月ごとの詳細な比較ができるよう集計
・特徴: CASE WHEN句を用いて、月ごとの売上金額などを算出
select
master_store.storename as 店舗名 -- 店舗名を取得
,to_char(thisyear.3月売上金額, 'fm999,999,999,999') as "2024年3月売上金額" -- 当年3月の売上金額
,to_char(lastyear.3月売上金額, 'fm999,999,999,999') as "2023年3月売上金額" -- 前年3月の売上金額
,round((cast(thisyear.3月売上金額 as decimal)/cast(lastyear.3月売上金額 as decimal))*100, 1) || '%' as 前年同月比 -- 売上金額の前年同月比を計算し、%表示
,to_char(thisyear.3月数量, 'fm999,999,999,999') as "2024年3月売上数量" -- 当年3月の売上数量
,to_char(lastyear.3月数量, 'fm999,999,999,999') as "2023年3月売上数量" -- 前年3月の売上数量
,round((cast(thisyear.3月数量 as decimal)/cast(lastyear.3月数量 as decimal))*100, 1) || '%' as 前年同月比 -- 売上数量の前年同月比を計算し、%表示
,to_char(round(thisyear.3月一品単価, 2), 'fm999,999,999,999.9') as "2024年3月一品単価" -- 当年3月の一品単価
,to_char(round(lastyear.3月一品単価, 2), 'fm999,999,999,999.9') as "2023年3月一品単価" -- 前年3月の一品単価
,round((cast(thisyear.3月一品単価 as decimal)/cast(lastyear.3月一品単価 as decimal))*100, 1) || '%' as 前年同月比 -- 一品単価の前年同月比を計算し、%表示
,to_char(thisyear.3月バスケット数, 'fm999,999,999,999') as "2024年3月バスケット数" -- 当年3月のバスケット数
,to_char(lastyear.3月バスケット数, 'fm999,999,999,999') as "2023年3月バスケット数" -- 前年3月のバスケット数
,round((cast(thisyear.3月バスケット数 as decimal)/cast(lastyear.3月バスケット数 as decimal))*100, 1) || '%' as 前年同月比 -- バスケット数の前年同月比を計算し、%表示
,to_char(round(thisyear.3月バスケット単価, 2), 'fm999,999,999,999.9') as "2024年3月バスケット単価" -- 当年3月のバスケット単価
,to_char(round(lastyear.3月バスケット単価, 2), 'fm999,999,999,999.9') as "2023年3月バスケット単価" -- 前年3月のバスケット単価
,round((cast(thisyear.3月バスケット単価 as decimal)/cast(lastyear.3月バスケット単価 as decimal))*100, 1) || '%' as 前年同月比 -- バスケット単価の前年同月比を計算し、%表示
,to_char(round(thisyear.3月買上点数, 2), 'fm999,999,999,999.9') as "2024年3月買上点数" -- 当年3月の買上点数
,to_char(round(lastyear.3月買上点数, 2), 'fm999,999,999,999.9') as "2023年3月買上点数" -- 前年3月の買上点数
,round((cast(thisyear.3月買上点数 as decimal)/cast(lastyear.3月買上点数 as decimal))*100, 1) || '%' as 前年同月比 -- 買上点数の前年同月比を計算し、%表示
,to_char(thisyear.3月会員数, 'fm999,999,999,999') as "2024年3月会員数" -- 当年3月の会員数
,to_char(lastyear.3月会員数, 'fm999,999,999,999') as "2023年3月会員数" -- 前年3月の会員数
,round((cast(thisyear.3月会員数 as decimal)/cast(lastyear.3月会員数 as decimal))*100, 1) || '%' as 前年同月比 -- 会員数の前年同月比を計算し、%表示
,to_char(thisyear.4月売上金額, 'fm999,999,999,999') as "2024年4月売上金額" -- 当年4月の売上金額
,to_char(lastyear.4月売上金額, 'fm999,999,999,999') as "2023年4月売上金額" -- 前年4月の売上金額
,round((cast(thisyear.4月売上金額 as decimal)/cast(lastyear.4月売上金額 as decimal))*100, 1) || '%' as 前年同月比 -- 売上金額の前年同月比を計算し、%表示
,to_char(thisyear.4月数量, 'fm999,999,999,999') as "2024年4月売上数量" -- 当年4月の売上数量
,to_char(lastyear.4月数量, 'fm999,999,999,999') as "2023年4月売上数量" -- 前年4月の売上数量
,round((cast(thisyear.4月数量 as decimal)/cast(lastyear.4月数量 as decimal))*100, 1) || '%' as 前年同月比 -- 売上数量の前年同月比を計算し、%表示
,to_char(round(thisyear.4月一品単価, 2), 'fm999,999,999,999.9') as "2024年4月一品単価" -- 当年4月の一品単価
,to_char(round(lastyear.4月一品単価, 2), 'fm999,999,999,999.9') as "2023年4月一品単価" -- 前年4月の一品単価
,round((cast(thisyear.4月一品単価 as decimal)/cast(lastyear.4月一品単価 as decimal))*100, 1) || '%' as 前年同月比 -- 一品単価の前年同月比を計算し、%表示
,to_char(thisyear.4月バスケット数, 'fm999,999,999,999') as "2024年4月バスケット数" -- 当年4月のバスケット数
,to_char(lastyear.4月バスケット数, 'fm999,999,999,999') as "2023年4月バスケット数" -- 前年4月のバスケット数
,round((cast(thisyear.4月バスケット数 as decimal)/cast(lastyear.4月バスケット数 as decimal))*100, 1) || '%' as 前年同月比 -- バスケット数の前年同月比を計算し、%表示
,to_char(round(thisyear.4月バスケット単価, 2), 'fm999,999,999,999.9') as "2024年4月バスケット単価" -- 当年4月のバスケット単価
,to_char(round(lastyear.4月バスケット単価, 2), 'fm999,999,999,999.9') as "2023年4月バスケット単価" -- 前年4月のバスケット単価
,round((cast(thisyear.4月バスケット単価 as decimal)/cast(lastyear.4月バスケット単価 as decimal))*100, 1) || '%' as 前年同月比 -- バスケット単価の前年同月比を計算し、%表示
,to_char(round(thisyear.4月買上点数, 2), 'fm999,999,999,999.9') as "2024年4月買上点数" -- 当年4月の買上点数
,to_char(round(lastyear.4月買上点数, 2), 'fm999,999,999,999.9') as "2023年4月買上点数" -- 前年4月の買上点数
,round((cast(thisyear.4月買上点数 as decimal)/cast(lastyear.4月買上点数 as decimal))*100, 1) || '%' as 前年同月比 -- 買上点数の前年同月比を計算し、%表示
,to_char(thisyear.4月会員数, 'fm999,999,999,999') as "2024年4月会員数" -- 当年4月の会員数
,to_char(lastyear.4月会員数, 'fm999,999,999,999') as "2023年4月会員数" -- 前年4月の会員数
,round((cast(thisyear.4月会員数 as decimal)/cast(lastyear.4月会員数 as decimal))*100, 1) || '%' as 前年同月比 -- 会員数の前年同月比を計算し、%表示
,to_char(thisyear.5月売上金額, 'fm999,999,999,999') as "2024年5月売上金額" -- 当年5月売上金額
,to_char(lastyear.5月売上金額, 'fm999,999,999,999') as "2023年5月売上金額" -- 前年5月売上金額
,round((cast(thisyear.5月売上金額 as decimal)/cast(lastyear.5月売上金額 as decimal))*100, 1) || '%' as 前年同月比 -- 売上金額の前年同月比を計算し、%表示
,to_char(thisyear.5月数量, 'fm999,999,999,999') as "2024年5月売上数量" -- 当年5月売上数量
,to_char(lastyear.5月数量, 'fm999,999,999,999') as "2023年5月売上数量" -- 前年5月売上数量
,round((cast(thisyear.5月数量 as decimal)/cast(lastyear.5月数量 as decimal))*100, 1) || '%' as 前年同月比 -- 売上数量の前年同月比を計算し、%表示
,to_char(round(thisyear.5月一品単価, 2), 'fm999,999,999,999.9') as "2024年5月一品単価" -- 当年5月一品単価
,to_char(round(lastyear.5月一品単価, 2), 'fm999,999,999,999.9') as "2023年5月一品単価" -- 前年5月一品単価
,round((cast(thisyear.5月一品単価 as decimal)/cast(lastyear.5月一品単価 as decimal))*100, 1) || '%' as 前年同月比 -- 一品単価の前年同月比を計算し、%表示
,to_char(thisyear.5月バスケット数, 'fm999,999,999,999') as "2024年5月バスケット数" -- 当年5月バスケット数
,to_char(lastyear.5月バスケット数, 'fm999,999,999,999') as "2023年5月バスケット数" -- 前年5月バスケット数
,round((cast(thisyear.5月バスケット数 as decimal)/cast(lastyear.5月バスケット数 as decimal))*100, 1) || '%' as 前年同月比 -- バスケット数の前年同月比を計算し、%表示
,to_char(round(thisyear.5月バスケット単価, 2), 'fm999,999,999,999.9') as "2024年5月バスケット単価" -- 当年5月のバスケット単価
,to_char(round(lastyear.5月バスケット単価, 2), 'fm999,999,999,999.9') as "2023年5月バスケット単価" -- 前年5月のバスケット単価
,round((cast(thisyear.5月バスケット単価 as decimal)/cast(lastyear.5月バスケット単価 as decimal))*100, 1) || '%' as 前年同月比 -- バスケット単価の前年同月比を計算し、%表示
,to_char(round(thisyear.5月買上点数, 2), 'fm999,999,999,999.9') as "2024年5月買上点数" -- 当年5月の買上点数
,to_char(round(lastyear.5月買上点数, 2), 'fm999,999,999,999.9') as "2023年5月買上点数" -- 前年5月の買上点数
,round((cast(thisyear.5月買上点数 as decimal)/cast(lastyear.5月買上点数 as decimal))*100, 1) || '%' as 前年同月比 -- 買上点数の前年同月比を計算し、%表示
,to_char(thisyear.5月会員数, 'fm999,999,999,999') as "2024年5月会員数" -- 当年5月の会員数
,to_char(lastyear.5月会員数, 'fm999,999,999,999') as "2023年5月会員数" -- 前年4月の会員数
,round((cast(thisyear.5月会員数 as decimal)/cast(lastyear.5月会員数 as decimal))*100, 1) || '%' as 前年同月比 -- 会員数の前年同月比を計算し、%表示
from
(
select -- 当年の売上データを取得するサブクエリ
coalesce(storecd,0) as 店舗CD -- 店舗コード(NULLの場合は0に置換)
,sum(case when (ymd >= 20240301 and ymd <= 20240331) then abs(price)*quantity else 0 end) as "3月売上金額" -- 3月売上金額を計算 (CASE WHENを使って月別に集計)
,sum(case when (ymd >= 20240401 and ymd <= 20240430) then abs(price)*quantity else 0 end) as "4月売上金額" -- 4月売上金額
,sum(case when (ymd >= 20240501 and ymd <= 20240531) then abs(price)*quantity else 0 end) as "5月売上金額" -- 5月売上金額
,sum(case when (ymd >= 20240301 and ymd <= 20240331) then quantity else 0 end) as "3月数量" -- 3月売上数量を計算 (CASE WHENを使って月別に集計)
,sum(case when (ymd >= 20240401 and ymd <= 20240430) then quantity else 0 end) as "4月数量" -- 4月売上数量
,sum(case when (ymd >= 20240501 and ymd <= 20240531) then quantity else 0 end) as "5月数量" -- 5月売上数量
,cast(3月売上金額 as decimal)/3月数量 as "3月一品単価" -- 3月一品単価を計算 (CASE WHENを使って月別に集計)
,cast(4月売上金額 as decimal)/4月数量 as "4月一品単価" -- 4月一品単価
,cast(5月売上金額 as decimal)/5月数量 as "5月一品単価" -- 5月一品単価
,count(distinct case when (ymd >= 20240301 and ymd <= 20240331) then receipt else null end) as "3月バスケット数" -- 3月バスケット数を計算 (CASE WHENを使って月別に集計。DISINCTで重複を除外)
,count(distinct case when (ymd >= 20240401 and ymd <= 20240430) then receipt else null end) as "4月バスケット数" -- 4月バスケット数
,count(distinct case when (ymd >= 20240501 and ymd <= 20240531) then receipt else null end) as "5月バスケット数" -- 5月バスケット数
,cast(3月売上金額 as decimal)/3月バスケット数 as "3月バスケット単価" -- 3月バスケット単価を計算 (CASE WHENを使って月別に集計)
,cast(4月売上金額 as decimal)/4月バスケット数 as "4月バスケット単価" -- 4月バスケット単価
,cast(5月売上金額 as decimal)/5月バスケット数 as "5月バスケット単価" -- 5月バスケット単価
,cast(3月数量 as decimal)/3月バスケット数 as "3月買上点数" -- 3月買上点数を計算 (CASE WHENを使って月別に集計)
,cast(4月数量 as decimal)/4月バスケット数 as "4月買上点数" -- 4月買上点数
,cast(5月数量 as decimal)/5月バスケット数 as "5月買上点数" -- 5月買上点数
,count(distinct case when (ymd >= 20240301 and ymd <= 20240331) then customer else null end) as "3月会員数" -- 3月会員数を計算 (CASE WHENを使って月別に集計。DISINCTで重複を除外)
,count(distinct case when (ymd >= 20240401 and ymd <= 20240430) then customer else null end) as "4月会員数" -- 4月会員数
,count(distinct case when (ymd >= 20240501 and ymd <= 20240531) then customer else null end) as "5月会員数" -- 5月会員数
from posdata -- 集計対象テーブル
where ymd >= 20240301 and ymd <= 20240531 -- 集計対象期間:2024年3月1日~5月31日のデータ
group by ROLLUP(storecd) -- 店舗コードでグループ化し、小計を算出
) as thisyear
join
(
select -- 前年の売上データを取得するサブクエリ
coalesce(storecd,0) as 店舗CD
,sum(case when (ymd >= 20230301 and ymd <= 20230331) then abs(price)*quantity else 0 end) as "3月売上金額"
,sum(case when (ymd >= 20230401 and ymd <= 20230430) then abs(price)*quantity else 0 end) as "4月売上金額"
,sum(case when (ymd >= 20230501 and ymd <= 20230531) then abs(price)*quantity else 0 end) as "5月売上金額"
,sum(case when (ymd >= 20230301 and ymd <= 20230331) then quantity else 0 end) as "3月数量"
,sum(case when (ymd >= 20230401 and ymd <= 20230430) then quantity else 0 end) as "4月数量"
,sum(case when (ymd >= 20230501 and ymd <= 20230531) then quantity else 0 end) as "5月数量"
,cast(3月売上金額 as decimal)/3月数量 as "3月一品単価"
,cast(4月売上金額 as decimal)/4月数量 as "4月一品単価"
,cast(5月売上金額 as decimal)/5月数量 as "5月一品単価"
,count(distinct case when (ymd >= 20230301 and ymd <= 20230331) then receipt else null end) as "3月バスケット数"
,count(distinct case when (ymd >= 20230401 and ymd <= 20230430) then receipt else null end) as "4月バスケット数"
,count(distinct case when (ymd >= 20230501 and ymd <= 20230531) then receipt else null end) as "5月バスケット数"
,cast(3月売上金額 as decimal)/3月バスケット数 as "3月バスケット単価"
,cast(4月売上金額 as decimal)/4月バスケット数 as "4月バスケット単価"
,cast(5月売上金額 as decimal)/5月バスケット数 as "5月バスケット単価"
,cast(3月数量 as decimal)/3月バスケット数 as "3月買上点数"
,cast(4月数量 as decimal)/4月バスケット数 as "4月買上点数"
,cast(5月数量 as decimal)/5月バスケット数 as "5月買上点数"
,count(distinct case when (ymd >= 20230301 and ymd <= 20230331) then customer else null end) as "3月会員数"
,count(distinct case when (ymd >= 20230401 and ymd <= 20230430) then customer else null end) as "4月会員数"
,count(distinct case when (ymd >= 20230501 and ymd <= 20230531) then customer else null end) as "5月会員数"
from posdata
where ymd >= 20230301 and ymd <= 20230531
group by ROLLUP(storecd)
) as lastyear
on thisyear.店舗CD = lastyear.店舗CD -- 当年と前年のデータで店舗コードを結合
join master_store on thisyear.店舗CD = master_store.storecd -- 店舗マスタテーブルと結合
order by thisyear.店舗CD -- 店舗コードで昇順にソート
●CASE WHEN句
・目 的:複数の条件分岐
・使い方:CASE WHEN 条件1 THEN 値1
WHEN 条件2 THEN 値2
ELSE 値3
END
・例 :sum(case when(ymd >= 20240301 and ymd <= 20240331)
then abs(price)*quantity else 0 end)
※ymdが2024年3月の場合、売上金額を計算し、それ以外は0とする
●ORDER BY
・目 的:結果を特定の項目で昇順または降順にソート
・使い方:ORDER BY 項目名 ASC/DESC