按時間sql
① sql如何按時間段查詢
時間函數各個資料庫不完全相同,但思路是一樣的,不要糾結時間段。
其實你上面的需求就是:
YEAR(RECORD)=2010
DAYOFWEEK BETWEEN 1 AND 5
這個樣子,就是時間型欄位拆分判斷,根據不同資料庫使用時間函數就可以了。
② sql按時間條件查詢如何寫
dim medate as string
medate = rtrim(t_date.text)
本月:
sql = "select * from table where month(inputdate) = month('"+medate+"')"
本年度:
sql = "select * from table where year(inputdate) = year('"+medate+"')"
本季度:
dim stdt as string
dim eddt as string
sql = "select * from table where inputdate = '"+stdt+"' and '"+eddt+"'"
這樣?
③ 根據時間查詢的SQL語句
加入A表數據如下A(id,tt,time)
insert into B(id,tt)
select X.tt-Y.tt
from A X,A Y
where A.time='2010-7-12 14:00:00'and B.time='2010-7-11 14:00:00' and A.id=B.id
當然時間位置格式不一定正確,可根據需要修改,主要方法是利用表自身的連接,然後用差值運算
④ sql如何按時間段來查詢
select * from ms_cf01 a where a.kfrq between to_date('20100101 180000','yyyymmdd hh24miss')
and to_date('20101231 180000','yyyymmdd hh24miss')
and to_char(a.kfrq,'hh24miss') between '180000' and '240000'
主要用到 to_char,to_date對時間欄位的轉換方法,具體使用方法可
如果這么查詢,主要是第2個條件無法用上索引,所以最好的方式是在涉及表的時候將該欄位拆成2個欄位 日期 ,時間,並用整形表示
⑤ 如何在SQL中按時間段查詢數據
sql server:
select * from 表 where 發生日期>'2008-7-1' and 發生日期<'2008-12-31'
access:
select * from 表 where 發生日期>#2008-7-1# and 發生日期<#2008-12-31#
這樣就可以了,注意sql server與access中的日期有一點不一樣。
(5)按時間sql擴展閱讀:
sql查詢日期語句
select * from ShopOrder where datediff(week,ordTime,getdate()-1)=0 //查詢當天日期在一周年的數據
select * from ShopOrder where datediff(day,ordTime,getdate()-1)=0 //查詢當天的所有數據
SELECT * FROM A where datediff(d,datetime,getdate()) <=30 //前30天
SELECT * FROM A WHERE DATEDIFF(m, shijian, GETDATE()) <=1 //上一月
查詢當天記錄另類的方法:
SELECT *
FROM j_GradeShop
WHERE (GAddTime BETWEEN CONVERT(datetime, LEFT(GETDATE(), 10) + ' 00:00:00.000')
AND CONVERT(datetime, LEFT(GETDATE(), 10) + ' 00:00:00.000') + 1)
ORDER BY GAddTime DESC
⑥ SQL 怎麼按時間排列
將欄位依次寫在order by 後面即可 , 中間用逗號隔開
select * from 表 order by time , name
select * from 表 order by time asc , name asc
select * from 表 order by time desc , name desc
select * from 表 order by time asc , name desc
select * from 表 order by time desc , name asc
(注: asc 表示升序 , desc表示降序 , 未明確寫明排序方式時默認是升序 )
⑦ SQL按時間排序
按修改的時間倒序排列語句為:
select * from MyTable Order By ModifyTime Desc
如果只想顯示最新一條,語句為:
select top 1 * from MyTable Order By ModifyTime Desc
示例:
表查詢結果為:
按時間排序後為:
只顯示最新一條結果為:
擴展:
ORDER BY 語句
ORDER BY 語句用於根據指定的列對結果集進行排序。
ORDER BY 語句默認按照升序對記錄進行排序。
如果您希望按照降序對記錄進行排序,可以使用 DESC 關鍵字。
⑧ sql 根據時間查詢
select * from 表 where datediff(month,時間列,getDate())=3
用datediff函數就好了
這里日期列是你表裡面存放日期的那一列,getDate()函數會返回當前的日期