ソースコード
SELECT
    n.item_code as CODE
    ,case
        when n.item_name = h.item_name then NULL
        when n.item_name <> h.item_name then n.item_name
        when h.item_name is null then n.item_name
     end as NAME
FROM
    item as n
LEFT JOIN
    item_history as h
ON
    n.item_code =h.item_code
ORDER BY
    n.item_code DESC;
提出情報
提出日時2024/11/21 16:43:13
コンテスト第13回 SQLコンテスト
問題名称比較
受験者hp
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
85 MB