Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の Sybase ステートメントを Oracle に変換するのに苦労しています。何をしても、Oracle から多数のエラーが発生しました。どこの部分で苦労しています。誰かが私を助けることができますか?
SELECT * FROM address WHERE convert(char(10), dateadd(dd,3,date_modified), 112) >= convert(char(10), date_modified, 112)
date_modified から 3 日後の日付が変更日以降かどうかを確認していますか?
where trunc(date_modified+3) > trunc(date_modified)