日付列に基づいて毎月テーブルからデータを抽出する必要があります。テーブルは毎月いくつかの新しいレコードを取得するため、前月に追加されたレコードを取得できるクエリを作成する必要があります。
クエリは
select r.iar_start_date
from reps r
where
case when (extract(month from sysdate) = 1)
then ((extract(month from r.iar_start_date) = 12) and extract(year from r.iar_start_date) = (extract(year from sysdate) - 1))
else (extract(month from r.iar_start_date) = (extract(month from sysdate) - 1) and extract(year from r.iar_start_date) = extract(year from sysdate))
end
このクエリでORA:00907: missing right parenthesis
エラーが発生しています。
どんな助けも非常に高く評価されます。