Home Database Mysql Tutorial SQL时间函数

SQL时间函数

Jun 07, 2016 pm 04:21 PM
function time

--日期转换参数 select CONVERT(varchar, getdate(), 120 )2004-09-12 11:06:08 select replace(replace(replace(CONVERT(varchar, getdate(), 120 ),'-',''),' ',''),':','')20040912110608 select CONVERT(varchar(12) , getdate(), 111 )2004/09/12 selec

   --日期转换参数

  select CONVERT(varchar, getdate(), 120 )2004-09-12 11:06:08

  select replace(replace(replace(CONVERT(varchar, getdate(), 120 ),'-',''),' ',''),':','')20040912110608

  select CONVERT(varchar(12) , getdate(), 111 )2004/09/12

  select CONVERT(varchar(12) , getdate(), 112 )20040912

  select CONVERT(varchar(12) , getdate(), 102 )2004.09.12

  其它我不常用的日期格式转换方法:

  select CONVERT(varchar(12) , getdate(), 101 )09/12/2004

  select CONVERT(varchar(12) , getdate(), 103 )12/09/2004

  select CONVERT(varchar(12) , getdate(), 104 )12.09.2004

  select CONVERT(varchar(12) , getdate(), 105 )12-09-2004

  select CONVERT(varchar(12) , getdate(), 106 )12 09 2004

  select CONVERT(varchar(12) , getdate(), 107 )09 12, 2004

  select CONVERT(varchar(12) , getdate(), 108 )11:06:08

  select CONVERT(varchar(12) , getdate(), 109 )09 12 2004 1

  select CONVERT(varchar(12) , getdate(), 110 )09-12-2004

  select CONVERT(varchar(12) , getdate(), 113 )12 09 2004 1

  select CONVERT(varchar(12) , getdate(), 114 )11:06:08.177

  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(varchar(10),getdate(),120)

  ,当前时间=convert(varchar(8),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 Server DATEPART() 函数返回 SQLServer datetime 字段的一部分。

  SQL Server DATEPART() 函数的语法是:

  DATEPART(portion, datetime)

  其中 datetime 是 SQLServer datetime 字段和部分的名称是下列之一: Ms for Milliseconds

  Yy for Year

  Qq for Quarter of the Year

  Mm for Month

  Dy for the Day of the Year

  Dd for Day of the Month

  Wk for Week

  Dw for the Day of the Week

  Hh for Hour

  Mi for Minute

  Ss for Second

  详细的说明:

  通常,你需要获得当前日期和计算一些其他的日期,例如,你的程序可能需要判断一个月的第一天或者最

  后一天。你们大部分人大概都知道怎样把日期进行分割(年、月、日等),然后仅仅用分割出来的年、月

  、日等放在几个函数中计算出自己所需要的日期!在这篇文章里,我将告诉你如何使用DATEADD和

  DATEDIFF函数来计算出在你的程序中可能你要用到的一些不同日期。

  在使用本文中的例子之前,你必须注意以下的问题。大部分可能不是所有例子在不同的机器上执行的结果

  可能不一样,这完全由哪一天是一个星期的第一天这个设置决定。第一天(DATEFIRST)设定决定了你的

  系统使用哪一天作为一周的第一天。所有以下的例子都是以星期天作为一周的第一天来建立,,也就是第一

  天设置为7。假如你的第一天设置不一样,你可能需要调整这些例子,使它和不同的第一天设置相符合。

  你可以通过@@DATEFIRST函数来检查第一天设置。

  为了理解这些例子,我们先复习一下DATEDIFF和DATEADD函数。DATEDIFF函数计算两个日期之间的小时、

  天、周、月、年等时间间隔总数。DATEADD函数计算一个日期通过给时间间隔加减来获得一个新的日期。

  要了解更多的DATEDIFF和DATEADD函数以及时间间隔可以阅读微软联机帮助。

  使用DATEDIFF和DATEADD函数来计算日期,和本来从当前日期转换到你需要的日期的考虑方法有点不同。

  你必须从时间间隔这个方面来考虑。比如,从当前日期到你要得到的日期之间有多少时间间隔,或者,从

  今天到某一天(比如1900-1-1)之间有多少时间间隔,等等。理解怎样着眼于时间间隔有助于你轻松的理

  解我的不同的日期计算例子。

  一个月的第一天

  第一个例子,我将告诉你如何从当前日期去这个月的最后一天。请注意:这个例子以及这篇文章中的其他

  例子都将只使用DATEDIFF和DATEADD函数来计算我们想要的日期。每一个例子都将通过计算但前的时间间

  隔,然后进行加减来得到想要计算的日期。

  这是计算一个月第一天的SQL 脚本:

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

  我们把这个语句分开来看看它是如何工作的。最核心的函数是getdate(),大部分人都知道这个是返回当

  前的日期和时间的函数。下一个执行的函数DATEDIFF(mm,0,getdate())是计算当前日期和“1900-01-01

  00:00:00.000”这个日期之间的月数。记住:时期和时间变量和毫秒一样是从“1900-01-01 00:00:00.000”

  开始计算的。这就是为什么你可以在DATEDIFF函数中指定第一个时间表达式为“0”。下一个函数是DATEADD

  ,增加当前日期到“1900-01-01”的月数。通过增加预定义的日期“1900-01-01”和当前日期的月数,我们可

  以获得这个月的第一天。另外,计算出来的日期的时间部分将会是“00:00:00.000”。

  这个计算的技巧是先计算当前日期到“1900-01-01”的时间间隔数,然后把它加到“1900-01-01”上来获得特

  殊的日期,这个技巧可以用来计算很多不同的日期。下一个例子也是用这个技巧从当前日期来产生不同的

  日期。

  本周的星期一

  这里我是用周(wk)的时间间隔来计算哪一天是本周的星期一。

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

  一年的第一天

  现在用年(yy)的时间间隔来显示这一年的第一天。

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

  季度的第一天

  假如你要计算这个季度的第一天,这个例子告诉你该如何做。

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

  当天的半夜

  曾经需要通过getdate()函数为了返回时间值截掉时间部分,就会考虑到当前日期是不是在半夜。假如这

  样,这个例子使用DATEDIFF和DATEADD函数来获得半夜的时间点。

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

  深入DATEDIFF和DATEADD函数计算

  你可以明白,通过使用简单的DATEDIFF和DATEADD函数计算,你可以发现很多不同的可能有意义的日期。

  目前为止的所有例子只是仅仅计算当前的时间和“1900-01-01”之间的时间间隔数量,然后把它加到“1900

  -01-01”的时间间隔上来计算出日期。假定你修改时间间隔的数量,或者使用不同的时间间隔来调用

  DATEADD函数,或者减去时间间隔而不是增加,那么通过这些小的调整你可以发现和多不同的日期。

  这里有四个例子使用另外一个DATEADD函数来计算最后一天来分别替换DATEADD函数前后两个时间间隔。

  上个月的最后一天

  这是一个计算上个月最后一天的例子。它通过从一个月的最后一天这个例子上减去3毫秒来获得。有一点

  要记住,在Sql Server中时间是精确到3毫秒。这就是为什么我需要减去3毫秒来获得我要的日期和时间。

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

  计算出来的日期的时间部分包含了一个Sql Server可以记录的一天的最后时刻(“23:59:59:997”)的时间。

  去年的最后一天

  连接上面的例子,为了要得到去年的最后一天,你需要在今年的第一天上减去3毫秒。

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

  本月的最后一天

  现在,为了获得本月的最后一天,我需要稍微修改一下获得上个月的最后一天的语句。修改需要给用

  DATEDIFF比较当前日期和“1900-01-01”返回的时间间隔上加1。通过加1个月,我计算出下个月的第一天,

  然后减去3毫秒,这样就计算出了这个月的最后一天。这是计算本月最后一天的SQL脚本。

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

  本年的最后一天

  你现在应该掌握这个的做法,这是计算本年最后一天脚本

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

  本月的第一个星期一

  好了,现在是最后一个例子。这里我要计算这个月的第一个星期一。这是计算的脚本。

  select DATEADD(wk, DATEDIFF(wk,0,

  dateadd(dd,6-datepart(day,getdate()),getdate())), 0)

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Tips for dynamically creating new functions in golang functions Tips for dynamically creating new functions in golang functions Apr 25, 2024 pm 02:39 PM

Go language provides two dynamic function creation technologies: closure and reflection. closures allow access to variables within the closure scope, and reflection can create new functions using the FuncOf function. These technologies are useful in customizing HTTP routers, implementing highly customizable systems, and building pluggable components.

Considerations for parameter order in C++ function naming Considerations for parameter order in C++ function naming Apr 24, 2024 pm 04:21 PM

In C++ function naming, it is crucial to consider parameter order to improve readability, reduce errors, and facilitate refactoring. Common parameter order conventions include: action-object, object-action, semantic meaning, and standard library compliance. The optimal order depends on the purpose of the function, parameter types, potential confusion, and language conventions.

How to write efficient and maintainable functions in Java? How to write efficient and maintainable functions in Java? Apr 24, 2024 am 11:33 AM

The key to writing efficient and maintainable Java functions is: keep it simple. Use meaningful naming. Handle special situations. Use appropriate visibility.

Complete collection of excel function formulas Complete collection of excel function formulas May 07, 2024 pm 12:04 PM

1. The SUM function is used to sum the numbers in a column or a group of cells, for example: =SUM(A1:J10). 2. The AVERAGE function is used to calculate the average of the numbers in a column or a group of cells, for example: =AVERAGE(A1:A10). 3. COUNT function, used to count the number of numbers or text in a column or a group of cells, for example: =COUNT(A1:A10) 4. IF function, used to make logical judgments based on specified conditions and return the corresponding result.

Comparison of the advantages and disadvantages of C++ function default parameters and variable parameters Comparison of the advantages and disadvantages of C++ function default parameters and variable parameters Apr 21, 2024 am 10:21 AM

The advantages of default parameters in C++ functions include simplifying calls, enhancing readability, and avoiding errors. The disadvantages are limited flexibility and naming restrictions. Advantages of variadic parameters include unlimited flexibility and dynamic binding. Disadvantages include greater complexity, implicit type conversions, and difficulty in debugging.

What are the benefits of C++ functions returning reference types? What are the benefits of C++ functions returning reference types? Apr 20, 2024 pm 09:12 PM

The benefits of functions returning reference types in C++ include: Performance improvements: Passing by reference avoids object copying, thus saving memory and time. Direct modification: The caller can directly modify the returned reference object without reassigning it. Code simplicity: Passing by reference simplifies the code and requires no additional assignment operations.

What is the difference between custom PHP functions and predefined functions? What is the difference between custom PHP functions and predefined functions? Apr 22, 2024 pm 02:21 PM

The difference between custom PHP functions and predefined functions is: Scope: Custom functions are limited to the scope of their definition, while predefined functions are accessible throughout the script. How to define: Custom functions are defined using the function keyword, while predefined functions are defined by the PHP kernel. Parameter passing: Custom functions receive parameters, while predefined functions may not require parameters. Extensibility: Custom functions can be created as needed, while predefined functions are built-in and cannot be modified.

C++ Function Exception Advanced: Customized Error Handling C++ Function Exception Advanced: Customized Error Handling May 01, 2024 pm 06:39 PM

Exception handling in C++ can be enhanced through custom exception classes that provide specific error messages, contextual information, and perform custom actions based on the error type. Define an exception class inherited from std::exception to provide specific error information. Use the throw keyword to throw a custom exception. Use dynamic_cast in a try-catch block to convert the caught exception to a custom exception type. In the actual case, the open_file function throws a FileNotFoundException exception. Catching and handling the exception can provide a more specific error message.

See all articles