以下の表に情報があり、2 つの日付の差が >= 1 の場合にカウントを取得したいと考えています。
Id testdate exdate
1 20120502 20120501 --> This should included, because diff is 1
2 20120601 20120601 --> This should not included, because diff is 0
3 20120704 20120703 --> This should included, because diff is 1
4 20120803 20120802 --> This should included, because diff is 1
上記のデータに基づいて、選択カウントは 3 を返すはずです。
次のことを試していますが、結果が得られません。
select count(to_char(testdate,'YYYYMMDD')-to_char(exdate,'YYYYMMDD')) from test ;