SQL语句,查询当月,当年数据

时间:2015-01-18 08:47:50
【文件属性】:

文件名称:SQL语句,查询当月,当年数据

文件大小:1KB

文件格式:TXT

更新时间:2015-01-18 08:47:50

SQL语句,查询当月,当年数据

当月数据 select * from table t where t.create_time >=TRUNC(SYSDATE, 'MM') and t.create_time<=last_day(SYSDATE) create_time为你要查询的时间 当年数据 select * from table t where t.create_time >=trunc(sysdate,'YYYY') and t.create_time<=add_months(trunc(sysdate,'YYYY'),12)-1 本周(国外周日为一个星期第一天) where t.create_time >=trunc(sysdate,'day')+1 and t.create_time<=trunc(sysdate,'day')+6 本周(国内周一为一个星期第一天) where t.create_time >=trunc(next_day(sysdate-8,1)+1) and t.create_time<=trunc(next_day(sysdate-8,1)+7) select trunc(next_day(sysdate - 8, 1) + 1) as 周一, trunc(next_day(sysdate - 8, 1) + 2) as 周二, trunc(next_day(sysdate - 8, 1) + 3) as 周三, trunc(next_day(sysdate - 8, 1) + 4) as 周四, trunc(next_day(sysdate - 8, 1) + 5) as 周五, trunc(next_day(sysdate - 8, 1) + 6) as 周六, trunc(next_day(sysdate - 8, 1) + 7) as 周日 from dual;


网友评论

  • 内容挺详细的,但是不是我想要的
  • 很具体,很实用。谢谢分享。
  • 很具体,正好用上。谢谢分享。
  • 很好,很实用。赞一个!