首页 > 代码库 > oracle sql语句取得本周本月本年的数据
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‘
);
--本年的
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。