ソースコード
select
    od.CUST_CODE as CODE
    , cs.CUST_NAME as NAME
    , COUNT(DISTINCT od.ORDER_NO) as CNT 
from
    orders as od 
    inner join customer as cs 
        on od.CUST_CODE = cs.CUST_CODE 
where
    od.ORDER_DATE between '2023-07-01' and '2023-07-31' 
group by
    cs.CUST_NAME
    , od.cust_code 
order by
    CNT desc
    , CODE desc
提出情報
提出日時2024/11/06 13:35:29
コンテスト第8回 SQLコンテスト
問題受注件数
受験者kawano
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
85 MB
データパターン2
WA
84 MB