ソースコード
delete from
    TBL_EMPLOYEES
where
    SEX == "F"
    and (
        substr(BIRTHDAY, 1, 4) < "1980"
        or(
            substr(BIRTHDAY, 1, 4) == "1980"
            and substr(BIRTHDAY, 6, 2) < "08"
        )
        or(
            substr(BIRTHDAY, 1, 4) == "1980"
            and substr(BIRTHDAY, 6, 2) == "08"
            and substr(BIRTHDAY, 9, 2) <= "05"
        )
    )
提出情報
提出日時2024/02/16 23:44:42
コンテストSQLの教科書確認用コンテスト
問題従業員データ削除
受験者shogo314
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
84 MB