oracle sql语句取得本周本月本年的数据
[sql]
--国内从周一到周日 国外是周日到周六
select
to_char(sysdate-1,
‘D‘
)
from
dual;
--取国内的星期几 去掉减一取国外的星期--
[sql]
--取本周时间内的数据
select
*
from
table
where
DTIME >=trunc(next_day(sysdate-8,1)+1)
and
DTIME<=trunc(next_day(sysdate-8,1)+7)+1 ;
select
*
from
table
where
DTIME >=trunc(next_day(sysdate-8,1))
and
DTIME<=trunc(next_day(sysdate-8,1)+7);
--国外的
select
*
from
table
where
DTIME >=TRUNC(SYSDATE,
‘MM‘
)
and
DTIME<=last_day(SYSDATE);
--本月的
select
*
from
table
where
to_char(DTIEM,
‘yyyy‘
)=to_char(sysdate,
‘yyyy‘
);
--本年的
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。