Oracle查询一段日期内的星期的日期..例如我要查2011-3-18至2011-3-30...
发布网友
发布时间:2022-05-05 10:35
我来回答
共3个回答
热心网友
时间:2022-04-13 16:50
select tdate, to_char(tdate,'day')
from (
select to_date('2011-03-18','yyyy-mm-dd') + rownum -1 as tdate
from all_objects
where rownum <= to_date('2011-03-30','yyyy-mm-dd') - to_date('2011-03-18','yyyy-mm-dd') + 1
) t
where to_char(tdate,'day') = '星期一'
其中t表是构建你需要的这一个时间段的日期列表, to_char(days,'day')得到的结果是星期几
热心网友
时间:2022-04-13 18:08
select * from userinfo p where P.IDATE BETWEEN TO_DATE('2011-03-18','YYYY-MM-DD HH24')
AND TO_DATE('2011-03-30','YYYY-MM-DD HH24')
热心网友
时间:2022-04-13 19:43
SQL: select to_char(时间,'d'),时间 from table_name where to_char(时间,'d') not in ('2','3','4','5','6')
and 时间 between 2011-3-18 and 2011-3-30
解释
----not in ('2','3','4','5','6')中,1--周日,2--周一,3--周二,4--周三。。。7--周六