var SetSearchDate = function (sign, sid, eid) {//sign 标识符区分本周本月本年,sid开始时间id,eid结束时间id var now = new Date(); var nowDayOfWeek = now.getDay(); //今天本周的第几天 var nowMonth = now.getMonth() + 1; //当前月 var nowYear = now.getFullYear(); //当前年 if (sign == 1)//本周…
--国内从周一到周日 国外是周日到周六 select to_char(sysdate-1,'D') from dual;--取国内的星期几 去掉减一取国外的星期 --取本周时间内的数据 ,)+) and DTIME<=trunc(next_day(sysdate-,)+)+ ; ,)) and DTIME<=trunc(next_day(sysdate-,)+):--国外的 select * from table where DTIME >=TRUNC(SYSDATE, 'MM') an…