ソースコード
SELECT
    CODE
    ,(select cust_name from customer where customer.cust_code = CODE) as NAME
    ,CNT
FROM
    (
    SELECT
        cust_code AS CODE
        ,COUNT(order_date) AS CNT
    FROM
        (
            SELECT
                DISTINCT
                cust_code
                ,order_date
            FROM
                orders
            where
                order_date between date('2023-07-01') and date('2023-07-31')
        )
    GROUP BY 
        cust_code
    )
order by
    cnt desc
    ,code desc
提出情報
提出日時2023/08/20 23:21:32
コンテスト第8回 SQLコンテスト
問題受注件数
受験者airly_pp
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量87 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
87 MB
データパターン2
AC
81 MB