oracle 查询时, 有个时间条件是:系统时间前5个小时怎么写啊?
select*fromtabletwheret.runtime>(当前系统时间-5小时)这里应该则么些啊?...
select * from table t where t.runtime>(当前系统时间-5小时)
这里应该则么些啊? 展开
这里应该则么些啊? 展开
2个回答
展开全部
假设 t.runtime 是 date 型的数据:
select * from table t where t.runtime>(sysdate - 5/24);
select * from table t where t.runtime>(sysdate - 5/24);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from table t where t.runtime>to_char(sysdate-5/24,'yyyy-mm-dd hh24:mi:ss')
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询