oracle時間段間資料查詢

2021-06-06 19:22:30 字數 864 閱讀 1131

時間段間資料查詢

//返回當天的資料              

select d.device_name as 裝置,d.alert_time 時間 from device d where  d.alert_time

between to_date(to_char(sysdate,'yyyy-mm-dd'),'yyyy-mm-dd hh24:mi:ss') and

sysdate;

--按照每月進行統計

select to_char(sysdate,'mm') from dual group by to_char(sysdate,'mm')  

--按照每季度進行統計

select to_char(sysdate,'q') from dual group by to_char(sysdate,'q')

--按照每週度進行統計

select to_char(sysdate,'ww') from dual group by to_char(sysdate,'ww')

--按照每年進行統計

select to_char(sysdate,'yyyy') from dual group by to_char(sysdate,'yy')

獲取某一天的資料

select d.device_name as 裝置,d.alert_time 時間 from device d where  d.alert_time

between to_date('2010-9-27 00:00:00','yyyy-mm-dd hh24:mi:ss') and

to_date('2010-9-27 23:59:59','yyyy-mm-dd hh24:mi:ss')

**:

Oracle時間段查詢

獲取某一天的資料 select d.device name as 裝置,d.alert time 時間 from device d where d.alert time between to date 2010 9 27 00 00 00 yyyy mm dd hh24 mi ss and to d...

根據時間段查詢資料

開發工具與關鍵技術 mvc 在我們做專案的時候,我們有時需要查詢一部分的資料,由於可能在 中的資料有成千上萬條資料,我們不可能一一的根據單條資料去查詢。在這個時候我們可以根據一段時間段去查詢資料。先說說這種做法的邏輯。我們在資料庫那邊在我們需要操作的表中必須要有乙個時間的字段。然後我們在專案中獲取乙...

分時間段查詢

declare t table 時間 datetime,金額 int insert t select 2007 1 1 10 00 23 8 union all select 2007 1 1 01 00 04 4 union all select 2007 1 1 01 00 14 4 union...