當前位置:首頁 » 編程語言 » sql查詢年月日
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

sql查詢年月日

發布時間: 2023-08-29 02:33:58

① 使用sql語句查詢日期的方法

使用sql語句查詢日期的方法

結構化查詢語言(Structured Query Language)簡稱SQL,是一種特殊目的的編程語言,是一種資料庫查詢和程序設計語言,用於存取數據以及查詢、更新和管理關系資料庫系統。以下是我為大家整理的使用sql語句查詢日期的方法,僅供參考,希望能夠幫助大家。

使用sql語句查詢日期的方法 篇1

使用sql語句查詢日期

select * from ShopOrder where datediff(week,ordTime,getdate()-1)=0 //查詢當天日期在一周年的數據

--查詢當天:

select * from info where DateDiff(dd,datetime,getdate())=0

--查詢24小時內的:

select * from info where DateDiff(hh,datetime,getDate())<=24

--info為表名,datetime為資料庫中的欄位值

--查詢當天:

select * from info where DateDiff(dd,datetime,getdate())=0

--查詢24小時內的:

select * from info where DateDiff(hh,datetime,getDate())<=24 --info為表名,datetime為資料庫中的欄位值

Sql代碼

--查詢當天記錄另類的方法

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

--查詢當天記錄另類的方法

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

DATEDIFF 函數:

語法:

DATEDIFF ( datepart , startdate , enddate )

備注:enddate 減去 startdate。如果 startdate 晚於 enddate,則返回負值。 如果結果超出整數值范圍,則 DATEDIFF 將產生錯誤。對於毫秒,最大數是 24 天 20 小時 31 分鍾零 23.647 秒。對於秒,最大數是 68 年。

跨分鍾、秒和毫秒等邊界計算的方法使得 DATEDIFF 指定的結果在所有數據類型中均一致。結果是帶正負號的整數值,它等於跨第一個和第二個日期間的

datepart 邊界數。例如,在 1 月 4 日(星期日)和 1 月 11 日(星期日)之間的'星期數是 1。

可以再MSSQL中測試:

Sql代碼

--兩個時間差剛好是24

--列印的方式

print dateDiff(hh,'2009-1-1 0:0:0','2009-1-2 0:0:0')

--查詢的方式

print dateDiff(hh,'2009-1-1 0:0:0','2009-1-2 0:0:0')

--兩個時間差剛好是24

--列印的方式

print dateDiff(hh,'2009-1-1 0:0:0','2009-1-2 0:0:0')

--查詢的方式

print dateDiff(hh,'2009-1-1 0:0:0','2009-1-2 0:0:0')

Sql代碼

--本月記錄

SELECT * FROM 表 WHERE datediff(month,[dateadd],getdate())=0

--本周記錄

SELECT * FROM 表 WHERE datediff(week,[dateadd],getdate())=0

--包括本年這些查詢方式是一樣的

--本月記錄

SELECT * FROM 表 WHERE datediff(month,[dateadd],getdate())=0

--本周記錄

SELECT * FROM 表 WHERE datediff(week,[dateadd],getdate())=0

--包括本年這些查詢方式是一樣的

sql server中的時間函數

1. 當前系統日期、時間

select getdate()

2. dateadd 在向指定日期加上一段時間的基礎上,返回新的 datetime 值 例如:向日期加上2天

select dateadd(day,2,'2004-10-15') --返回:2004-10-17 00:00:00.000

3. datediff 返回跨兩個指定日期的日期和時間邊界數。

select datediff(day,'2004-09-01','2004-09-18') --返回:17

4. datepart 返回代表指定日期的指定日期部分的整數。

SELECT DATEPART(month, '2004-10-15') --返回 10

5. datename 返回代表指定日期的指定日期部分的字元串

SELECT datename(weekday, '2004-10-15') --返回:星期五

6. day(), month(),year() --可以與datepart對照一下

select 當前日期=convert(var10),getdate(),120)

,當前時間=convert(var8),getdate(),114)

select datename(dw,'2004-10-15')

select 本年第多少周=datename(week,'2004-10-15')

,今天是周幾=datename(weekday,'2004-10-15')

函數 參數/功能

GetDate( ) 返回系統目前的日期與時間

DateDiff (interval,date1,date2) 以interval 指定的方式,返回date2 與date1兩個日期之間的差值 date2-date1

DateAdd (interval,number,date) 以interval指定的方式,加上number之後

的日期

DatePart (interval,date) 返回日期date中,interval指定部分所對應的整數值

DateName (interval,date) 返回日期date中,interval指定部分所對應的字元串名稱

參數 interval的設定值如下:

值 縮 寫(Sql Server) Access 和 ASP 說明

Year Yy yyyy 年 1753 ~ 9999

Quarter Qq q 季 1 ~ 4

Month Mm m 月1 ~ 12

Day of year Dy y 一年的日數,一年中的第幾日 1-366

Day Dd d 日,1-31

Weekday Dw w 一周的日數,一周中的第幾日 1-7

Week Wk ww 周,一年中的第幾周 0 ~ 51

Hour Hh h 時0 ~ 23

Minute Mi n 分鍾0 ~ 59

Second Ss s 秒 0 ~ 59

Millisecond Ms - 毫秒 0 ~ 999

access 和 asp 中用date()和now()取得系統日期時間;其中

DateDiff,DateAdd,DatePart也同是能用於Access和asp中,這些函數的用法也類似

舉例:

1.GetDate() 用於sql server :select GetDate()

2.DateDiff('s','2005-07-20','2005-7-25 22:56:32')返回值為 514592 秒 DateDiff('d','2005-07-20','2005-7-25 22:56:32')返回值為 5 天

3.DatePart('w','2005-7-25 22:56:32')返回值為 2 即星期一(周日為1,周六為7)

DatePart('d','2005-7-25 22:56:32')返回值為 25即25號

DatePart('y','2005-7-25 22:56:32')返回值為 206即這一年中第206天 DatePart('yyyy','2005-7-25 22:56:32')返回值為 2005即2005年

使用sql語句查詢日期的方法 篇2

datediff(week,zy_time,getdate())=0 //查詢本周 datediff(month,zy_time,getdate())=0 //查詢本月

本季:select * from table where datediff(qq,C_CALLTIME,getdate())=0

前半年1-6,後半年7-12:select * from table where datepart(mm,C_CALLTIME)/7 = datepart(mm,getdate())/7 1. 當前系統日期、時間 select getdate()

2. dateadd 在向指定日期加上一段時間的基礎上,返回新的 datetime 值 例如:向日期加上2天

select dateadd(day,2,'2004-10-15') --返回:2004-10-17 00:00:00.000 3. datediff 返回跨兩個指定日期的日期和時間邊界數。

select datediff(day,'2004-09-01','2004-09-18') --返回:17 4. datepart 返回代表指定日期的指定日期部分的整數。 SELECT DATEPART(month, '2004-10-15') --返回 10 5. datename 返回代表指定日期的指定日期部分的字元串 SELECT datename(weekday, '2004-10-15') --返回:星期五 6. day(), month(),year() --可以與datepart對照一下 select 當前日期=convert(var10),getdate(),120) ,當前時間=convert(var8),getdate(),114) select datename(dw,'2004-10-15')

select 本年第多少周=datename(week,'2004-10-15') ,今天是周幾=datename(weekday,'2004-10-15') 函數 GetDate( )

參數/功能

返回系統目前的日期與時間

以interval 指定的方式,返回

DateDiff

date2 與date1兩個日期之間的

(interval,date1,date2)

差值 date2-date1 DateAdd 以interval指定的方式,加上(interval,number,date) number之後的日期

返回日期date中,interval指定

DatePart (interval,date)

部分所對應的整數值 返回日期date中,interval指定

DateName (interval,date)

部分所對應的字元串名稱

參數 interval的設定值如下:

Access 和

縮 寫(Sql Server)

ASP Yy Qq Mm

yyyy q m y d w ww h n s -

值 Year Quarter Month

說明

年 1753 ~ 9999 季 1 ~ 4 月1 ~ 12

一年的日數,一年中的第幾日 1-366 日,1-31

一周的日數,一周中的第幾日 1-7

周,一年中的第幾周 0 ~ 51 時0 ~ 23 分鍾0 ~ 59 秒 0 ~ 59 毫秒 0 ~ 999

Day of year Dy Day Weekday Week Hour Minute Second

Dd Dw Wk Hh Mi Ss

Millisecond Ms

access 和 asp 中用date()和now()取得系統日期時間;其中DateDiff,DateAdd,DatePart也同是能用於Access和asp中,這些函數的用法也類似

舉例:

1.GetDate() 用於sql server :select GetDate()

2.DateDiff('s','2005-07-20','2005-7-25 22:56:32')返回值為 514592 秒 DateDiff('d','2005-07-20','2005-7-25 22:56:32')返回值為 5 天

3.DatePart('w','2005-7-25 22:56:32')返回值為 2 即星期一(周日為1,周六為7) DatePart('d','2005-7-25 22:56:32')返回值為 25即25號

DatePart('y','2005-7-25 22:56:32')返回值為 206即這一年中第206天 DatePart('yyyy','2005-7-25 22:56:32')返回值為 2005即2005年 sql 查詢本周本月問題 ---求相差天數

select datediff(day,'2004-01-01',getdate())

--1.一個月第一天的

SELECT DATEADD(mm, DATEDIFF(mm,0,getdate()), 0)

--2.本周的星期一

SELECT DATEADD(wk, DATEDIFF(wk,0,getdate()), 0)

select dateadd(wk,datediff(wk,0,getdate()),6) --3.一年的第一天

SELECT DATEADD(yy, DATEDIFF(yy,0,getdate()), 0)

--4.季度的第一天

SELECT DATEADD(qq, DATEDIFF(qq,0,getdate()), 0)

--5.當天的半夜

SELECT DATEADD(dd, DATEDIFF(dd,0,getdate()), 0)

--6.上個月的最後一天

SELECT dateadd(ms,-3,DATEADD(mm, DATEDIFF(mm,0,getdate()), 0))

--7.去年的最後一天

SELECT dateadd(ms,-3,DATEADD(yy, DATEDIFF(yy,0,getdate()), 0))

--8.本月的最後一天

SELECT dateadd(ms,-3,DATEADD(mm, DATEDIFF(m,0,getdate())+1, 0))

--9.本年的最後一天

SELECT dateadd(ms,-3,DATEADD(yy, DATEDIFF(yy,0,getdate())+1, 0))

--10.本月的第一個星期一 select DATEADD(wk,

DATEDIFF(wk,0,dateadd(dd,6-datepart(day,getdate()),getdate())), 0) --查詢本周注冊人數

select count(*) from [user]

where datediff(week,create_day-1,getdate())=0

--上周注冊人數

select count(*) from [user]

where datediff(week,create_day-1,getdate())=1

--本月注冊人數

select count(*) from [user]

where datediff(month,create_day,getdate())=0

--上月注冊人數

select count(*) from [user]

where datediff(month,create_day,getdate())=1

--如果要效率,這樣寫查詢

--查詢本周注冊人數

where

create_day>=dateadd(day,2-datepart(weekday,getdate()),convert(varchar,getdate(),112)) and

create_day<dateadd(day,9-datepart(weekday,getdate()),convert(varchar,getdate(),112))

--上周注冊人數

select count(*) from [user] where

create_day>=dateadd(day,-5-datepart(weekday,getdate()),convert(varchar,getdate(),112)) and

create_day<dateadd(day,2-datepart(weekday,getdate()),convert(varchar,getdate(),112))

--本月注冊人數

select count(*) from [user]

where create_day>=dateadd(day,1-day(getdate()),convert(varchar,getdate(),112)) and

create_day<dateadd(month,1,dateadd(day,1-day(getdate()),convert(varchar,getdate(),112)))

--上月注冊人數

select count(*) from [user] where

create_day>=dateadd(month,-1,dateadd(day,1-day(getdate()),convert(varchar,getdate(),112)))

and create_day<dateadd(day,1-day(getdate()),convert(varchar,getdate(),112))

--本周

select count(*) from User

where datediff(dd,create_day,getdate()) <= datepart(dw,getdate())

--上周

select count(*) from User

where datediff(dd,create_day,(getdate() - datepart(dw,getdate()))) <= 7

--本月

select count(*) from User

where datepart(mm,create_day) = datepart(mm,getdate()) --上月

where datepart(mm,create_day) = datepart(mm,getdate()) - 1 --本周

select count(*) from [User]

where datediff(dd,create_day,getdate()) <= datepart(dw,getdate())

--上周

select count(*) from [User]

where datediff(dd,create_day,(getdate() - datepart(dw,getdate()))) <= 7

--本月

select count(*) from [User]

where datepart(mm,create_day) = datepart(mm,getdate()) --上月

select count(*) from [User]

where datepart(mm,create_day) = datepart(mm,getdate()) - 1 學習

month(create_day)=month(getdate())本月 month(create_day)=month(getdate())-1 上月

補充 查詢今日所有的

SELECT * from feedback WHERE (DATEDIFF(d,fedtime,GETDATE())=0) ORDER BY fedid DESC

;

② SQL查詢日期的年份

要返回正確的記錄,你需要適用日期和時間范圍。有不止一種途徑可以做到這一點。例如,下面的這個SELECT 語句將能返回正確的記錄: SELECT * FROM weblog WHERE entrydate>=」12/25/2000」 AND entrydate<」12/26/2000」 這個語句可以完成任務,因為它選取的是表中的日期和時間大於等於12/25/2000 12:00:00:000AM並小於12/26/2000 12:00:00:000AM的記錄。換句話說,它將正確地返回2000年聖誕節這一天輸入的每一條記錄。 另一種方法是,你可以使用LIKE來返回正確的記錄。通過在日期表達式中包含通配符「%」,你可以匹配一個特定日期的所有時間。這里有一個例子: SELECT * FROM weblog WHERE entrydate LIKE 『Dec 25 2000%』 這個語句可以匹配正確的記錄。因為通配符「%」代表了任何時間。

③ sql如何按日期中的月份查詢

sql按日期中的月份查詢如下:

SQL Server

select * from [data] where DATEPART(m,[date])=2

Access

select * from [data] where DATEPART('m',[date])=2

說明:

DATEPART(datepart,date)

返回表示指定日期的指定部分的整數

datepart 要取得的日期部分

- m 表示月份,d表示日,yyyy表示年

date 日期表達式

舉例:

--以2013-12-10 12:56:55為例

--convert(nvarchar(10),CreateDate,120) => 2013-12-10

--DATEPART(month,CreateDate) => 12

--DATEPART(year,CreateDate) => 2013

--月

select datepart(MONTH,'2013-06-08')

select datepart(mm,'2013-06-08')

select datepart(m,'2013-06-08')

(3)sql查詢年月日擴展閱讀:

相關函數

SQL Aggregate 函數

SQL Aggregate 函數計算從列中取得的值,返回一個單一的值。

有用的 Aggregate 函數:

AVG() - 返回平均值

COUNT() - 返回行數

FIRST() - 返回第一個記錄的值

LAST() - 返回最後一個記錄的值

MAX() - 返回最大值

MIN() - 返回最小值

SUM() - 返回總和

SQL Scalar 函數

SQL Scalar 函數基於輸入值,返回一個單一的值。

有用的 Scalar 函數:

UCASE() - 將某個欄位轉換為大寫

LCASE() - 將某個欄位轉換為小寫

MID() - 從某個文本欄位提取字元

LEN() - 返回某個文本欄位的長度

ROUND() - 對某個數值欄位進行指定小數位數的四捨五入

NOW() - 返回當前的系統日期和時間

④ sql怎麼取時間欄位的年月日的值

sql取時間欄位中年月日的值的步驟如下:

我們需要准備的材料分別是:電腦、sql查詢器。

1、首先,打開sql查詢器,連接上相應的sql表。

⑤ SQL語句:查詢某一年、月、日的記錄

SQL語句:查詢某一年、月、日的記錄

$sql="select * from dbname where YEAR(PatchDate)=".$year." and MONTH(PatchDate)=".$month." order by ID desc";

⑥ sql如何讀取系統日期和時間

GETDATE() 函數從 SQL Server 返回當前的時間和日期。
使用下面的 SELECT 語句:
SELECT GETDATE() AS CurrentDateTime

結果:

CurrentDateTime

2008-12-29 16:25:46.635
注釋:上面的時間部分精確到毫秒。
例子 2
下面的 SQL 創建帶有日期時間列 (OrderDate) 的 "Orders" 表:
CREATE TABLE Orders
(
OrderId int NOT NULL PRIMARY KEY,
ProctName varchar(50) NOT NULL,
OrderDate datetime NOT NULL DEFAULT GETDATE()
)

請注意,OrderDate 把 GETDATE() 規定為默認值。結果是,當您在表中插入新行時,當前日期和時間自動插入列中。
現在,我們希望在 "Orders" 表中插入一條記錄:
INSERT INTO Orders (ProctName) VALUES ('Computer')

"Orders" 表將成為這樣:

OrderId ProctName OrderDate

1 'Computer' 2008-12-29 16:25:46.635