ソースコード
SELECT
orders.CUST_CODE AS CODE,
CUST_NAME as NAME,
count(distinct order_date) as CNT
from ORDERS
inner join customer on orders.cust_code=customer.cust_code

where

ORDER_DATE

between '2023-07-01' and '2023-07-31'
group by 1
order by 3 desc,1 desc

提出情報
提出日時2023/08/19 17:20:11
コンテスト第8回 SQLコンテスト
問題受注件数
受験者noneof383
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
77 MB
データパターン2
AC
77 MB