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 收到了很多错误。我很难处理 Where 部分。有人能帮我吗?
SELECT * FROM address WHERE convert(char(10), dateadd(dd,3,date_modified), 112) >= convert(char(10), date_modified, 112)
您是否正在检查从 date_modified 开始的第三天是否大于或等于修改日期?
where trunc(date_modified+3) > trunc(date_modified)