日期:2014-05-16 浏览次数:20536 次
获取系统时间
select sysdate from dual
获取前一天时间
select sysdate-1 from dual
?
select to_char(sysdate,'d') 每周第几天 ,
to_char(sysdate,'dd') 每月第几天 ,
to_char(sysdate,'ddd') 每年第几天 ,
to_char(sysdate,'ww') 每年第几周 ,
to_char(sysdate,'mm') 每年第几月 ,
to_char(sysdate,'q') 每年第几季 ,
to_char(sysdate,'yyyy') 年
?from dual
select to_char(sysdate,'YYYY"年"mm"月"dd"日"')
?from dual
select to_char(sysdate,'YYYY/mm/dd hh24:mi:ss ssss')
?from dual
获取sm_notify_his 前一天的所有数据,这种写法会破坏senddate字段上的索引。数据量小时可以使用。
select t.TELNUM,to_char(t.SENDDATE,'yyyy-mm-dd') from sm_notify_his t where to_char(t.senddate,'yyyy-mm-dd')= to_char(sysdate-1,'yyyy-mm-dd')
/