ソースコード
WITH distincted AS (
    SELECT DISTINCT
        CUST_CODE
        , ORDER_DATE
    FROM
        ORDERS
    WHERE
        ORDER_DATE BETWEEN '2023-07-01' AND '2023-07-31'
)
SELECT
    distincted.CUST_CODE AS CODE
    , CUSTOMER.CUST_NAME AS NAME
    , COUNT(distincted.CUST_CODE) AS CNT
FROM
    distincted
INNER JOIN
    CUSTOMER ON distincted.CUST_CODE = CUSTOMER.CUST_CODE
GROUP BY
    distincted.CUST_CODE
ORDER BY
    CNT DESC
    , CODE DESC
;
提出情報
提出日時2024/05/17 14:41:12
コンテスト第8回 SQLコンテスト
問題受注件数
受験者maori
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
82 MB
データパターン2
AC
84 MB