我必须从Oracle表中获取数据,其中我有一个名为lastupdatedDate的日期字段,我想只获取那些lastupdatedDate在最后10分钟的sysdate中的行
例如,如果在我的表中,我将lastupdateDate当成05/20/09 4:20:44,那么如果我在05/20/09 4:20:44和05 / 20/09 4:30:44,而不是如果我在05/20/09 5:31:44运行查询。
select * from mytable where lastupdatedDate > sysdate - (10/1440)