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.
我正在尝试使用Floor日期和日期时间字段之间的函数来获取天数差异。但我得到了额外的一天。这就是我正在做的->
Floor
SELECT col,col1,FLOOR(col-col1) FROM tab_name
这里 col 只是 Date 字段,Col1 是 DateTime 字段
任何的想法?
在 oracle 中没有没有时间的日期。 日期也总是包含时间(即使您不显示它)。
我不明白你为什么要使用floor,我想你想要的是trunc:
floor
trunc
SELECT col,col1, col- trunc(col1) FROM tab_name