Ⅰ sql 語句時間段查詢 前一天7:00到今天7:00的數據
select * from bl_date
where out_datetime
between YEAR(getdate())+MONTH(getdate())+day(getdate()-1)+『07:00:00'
and YEAR(getdate())+MONTH(getdate())+day(getdate())+『07:00:00'
Ⅱ SQL語句如何查詢某個時間節點的前後數據
敲入:1234567selecttop1*fromtablewhereFinishTime>'2016-01-0108:00:00.000'*fromtablewhereFinishTime<'2016-01-0108:00:00.000'orderbyFinishTimedesc
Ⅲ sql資料庫要顯示當天中某一時段的記錄,該如何寫求教。
ConsumeTime between cast(GetDate()-0.5 as int) and GetDate()
GetDate()是現在系統時間
GetDate()-0.5是12小時前的時間
所以你上邊的sql語句是查詢時間以前12個小時的數據,如果想查詢固定的早上或者中午的數據,如果是通過sql查詢分析器則可以直接把查詢時間段替換一下即可
如查詢今天中午的可以用
ConsumeTime between 2008-10-21 8:00:00 and 2008-10-21 14:00:00
,如果是別的軟體,可以把ConsumeTime後的條件設置為參數,當選擇早上時就查詢1900-1-1 1900-1-1 8:00:00 之間的數據,當查詢中午 就把參數替換為1900-1-1 8:00:00 1900-1-1 14:00:00 ,日期肯定要換,時間就設置成固定就可以了.
Ⅳ SQL 如何查詢日期在一定范圍內的數據
select * from 表 where 日期欄位>='開始日期' and 日期欄位<='截止日期' and convert(char(8),日期欄位,108)>='開始時間' and convert(char(8),日期欄位,108)<='截止時間'。
SELECT * FROM 表明 WHERE 日期欄位名 BETWEEN '20130101' AND '20130130'。
例如:
select * from tb1 where dDate>='2010-11-05' and dDate<='2010-11-15'
and convert(char(8),dDate,108)>='8:00:00' and convert(char(8),dDate,108)<='9:00:00'.
select * from table1where year(d)=2010 and month(d)=7 and day(d) between 1 and 31
and (Datepart(hour,d)>=22 or Datepart(hour,d)<6)
(4)sql昨天5點到今天5點的數據擴展閱讀:
SQL查詢日期:
今天的所有數據:select * from 表名 where DateDiff(dd,datetime類型欄位,getdate())=0
昨天的所有數據:select * from 表名 where DateDiff(dd,datetime類型欄位,getdate())=1
7天內的所有數據:select * from 表名 where DateDiff(dd,datetime類型欄位,getdate())<=7
30天內的所有數據:select * from 表名 where DateDiff(dd,datetime類型欄位,getdate())<=30
本月的所有數據:select * from 表名 where DateDiff(mm,datetime類型欄位,getdate())=0
本年的所有數據:select * from 表名 where DateDiff(yy,datetime類型欄位,getdate())=0
參考資料:SQL_網路
Ⅳ sql server 統計每天凌晨到次日凌晨的數據作為當天的數據,
where 時間 >='2014-08-05 00:00:00' and 時間<'2014-08-06 00:00:00'
下一天的話
where 時間 >='2014-08-06 00:00:00' and 時間<'2014-08-07 00:00:00'
這樣的話,在時間上不會有重疊
Ⅵ SQL 查詢今天、昨天、7天內、30天的數據
主要用到sql 函鄭首數
DATEDIFF( datepart , startdate , enddate )
startdate=日期欄位拆叢歷名稱
--查詢 今日
select * from tableA where DateDiff(dd,datetime類型欄位,getdate())= 0
--查詢 昨日
select * from tableA where DateDiff(dd,times,getdate())= 1
--查詢 本周
select * from tableA where DateDiff(dd,VoucherDate,getdate())<=7
--查詢 上周
select * from tableA where DateDiff(dd,VoucherDate,getdate())>7 and DateDiff(dd,VoucherDate,getdate())<=14
--查詢 本月
select * from tableA where DateDiff(mm,VoucherDate,getdate())= 0
--查詢 上月
select * from tableA where DateDiff(mm,VoucherDate,getdate())= 1
--查詢 本年
select * from tableA where DateDiff(yy,VoucherDate,getdate())= 0
--查旅搜詢 上一年
select * from tableA where DateDiff(yy,VoucherDate,getdate())= 1
Ⅶ 怎麼用sql查詢昨天,今天,明天和本周的記錄
工具/材料:Management Studio。
1、首先在桌面上,點擊「Management Studio」圖標。