入力日から月を抽出したい。私はこれを試しています
select
case
when extract(month from :myDate) <= 6 then '1st'
when extract(month from :myDate) >= 7 then '2nd'
end as half_of_the_year
from dual
入力する2-12-12
と、次のエラーが表示されます
ORA-30076: invalid extract field for extract source
30076. 00000 - "invalid extract field for extract source"
*Cause: The extract source does not contain the specified extract field.
*Action:
なぜこのエラーが発生するのですか?
ありがとう