ソースコード
select
    i.ITEM_CODE as ITEM,
    i.ITEM_NAME as I_NAME,
    c.CL_NAME as C_NAME,
    s.SIZE_NAME as S_NAME
from
    item as i
inner join
    color_tbl as c
on
    i.update_user_name = c.update_user_name
inner join
    size_tbl as s
on
    i.update_user_name = s.update_user_name

where
    i.stock_management_type=1
order by
    i.item_code asc,
    c.cl_code asc,
    s.size_code asc;
提出情報
提出日時2023/02/17 15:20:05
コンテスト第5回 SQLコンテスト
問題組合せ一覧
受験者UT
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量83 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
83 MB
データパターン2
WA
82 MB