发布网友 发布时间:2022-04-10 08:31
共4个回答
热心网友 时间:2022-04-10 10:01
select * from table where table.time between trunc(sysdate-2) and trunc(sysdate)热心网友 时间:2022-04-10 11:19
你那张表有存时间这个列trunc(sysdate)才行,用前面几位的语句,没有的话就显示100条或者几条数据呗。热心网友 时间:2022-04-10 12:53
select * from table where table.date between table.date-3 and sysdate热心网友 时间:2022-04-10 14:45
select date from table where date>to_char(sysdate-3,'dd') and date<to_char(sysdate,'dd')