关于oracle中日期差的计算
我有一个表,其中包含电影、日期等列,我必须找到电影观看中的日期差异,请指定查询,谢谢
I have a table which consist of column like movies ,date etc and i have to find difference of date in movies watch please specify the query thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Oracle 本身支持日期算术。您可以从一个日期中减去另一个日期 - 例如,
SELECT SYSDATE - date_watched FROM movie_table
将返回今天日期与date_watched
之间的天数。您需要提供有关您的要求的更多详细信息,以获得更准确的答案 - 例如表结构、示例数据、预期输出。
Oracle has native support for date arithmetic. You can subtract one date from another - e.g.
SELECT SYSDATE - date_watched FROM movies_table
will return a the number of days between today's date anddate_watched
.You need to provide more detail about your requirements for a more exact answer - e.g. table structure, sample data, expected output.