oralce sql 建立指定時間段內的行事曆資訊,oralcesql

來源:互聯網
上載者:User

oralce sql 建立指定時間段內的行事曆資訊,oralcesql

建立 開始時間是2010 截止時間是2100的日曆表資料。



create table temp_calendar as select

   min(to_char(day, 'yyyymm')) month,
   to_char(min(decode(weekday, 1, day)) ,'dd') w_7,
   to_char(min(decode(weekday, 2, day)),'dd') w_1,
   to_char(min(decode(weekday, 3, day)),'dd') w_2,
   to_char(min(decode(weekday, 4, day)),'dd') w_3,
   to_char(min(decode(weekday, 5, day)),'dd') w_4,
   to_char(min(decode(weekday, 6, day)),'dd') w_5,
   to_char(min(decode(weekday, 7, day)),'dd') w_6
  from (select trunc(day,'yyyy') year,
                 day,
         month,
         decode(sign(rn - weekday), 1, week + 1, week) week,
         weekday,
         rn
       from (select day,
             to_char(day, 'mm') month,
             to_char(day, 'w') week,
             to_char(day, 'd') weekday,
             row_number() over(partition by to_char(day, 'mm'), to_char(day, 'w') order by day) rn
           from (select trunc(to_date('2008','yyyy'), 'yyyy') + level - 1 day
               from dual
              connect by rownum <= trunc(to_date('2101','yyyy'),'yyyy')-trunc(to_date('2008','yyyy'),'yyyy')))) a
  group by a.year,a.month, a.week
  order by a.year,a.month, a.week;
oralce sql 查日期語句怎寫

select * from hr_info where to_char(comdate,'yyyy-mm-dd') between '2009-01-01' and '2010-01-01'
 
oralce 怎用SQL語句查詢11月份晚上23點到第二天7點的使用者資料;

select IMSI,bytes from session where dtcol between to_date('2012-11-01 23:00:00','yyyy-mm-dd hh24:mi:ss') and to_date('2012-11-02 07:00:00','yyyy-mm-dd hh24:mi:ss')
 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.