ソースコード
select
    ord.cust_code as CODE,
    cust_name as NAME,
    count(distinct order_date) as CNT
from
    orders as ord
    inner join customer as cust on ord.cust_code=cust.cust_code
where
    order_date between "2023-07-01" and "2023-07-31"
group by
    NAME
order by
    CNT desc,
    CODE desc
;
提出情報
提出日時2023/08/18 16:01:27
コンテスト第8回 SQLコンテスト
問題受注件数
受験者kntnmn
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量101 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
101 MB
データパターン2
AC
98 MB