Time-related SQL statement/sql get current time/sql time compare/sql time format

Source: Internet
Author: User
Tags date1 getdate

1. Current system date, time
Select GETDATE ()
2. DateAdd returns a new datetime value based on adding a period of time to the specified date
Example: Add 2 days to the date
Select DATEADD (day,2, ' 2004-10-15 ')--return: 2004-10-1700:00:00.000

3. DateDiff returns the number of date and time boundaries across two specified dates.
Select DateDiff (Day, ' 2004-09-01 ', ' 2004-09-18 ')--return: 17

4. DatePart returns an integer representing the specified date portion of the specified date.
SELECT DATEPART (month, ' 2004-10-15 ')--return 10

5. Datename returns a string representing the specified date part of the specified date
SELECT Datename (Weekday, ' 2004-10-15 ')--return: Friday

6. Day (), month (), year ()--can be compared with datepart

Select Current date =convert (varchar), GETDATE (), 120)
, Current time =convert (varchar (8), GETDATE (), 114)

7. Select Datename (DW, ' 2004-10-15 ')

Select how many weeks of the year =datename (Week,getdate ())
, today is the week of =datename (Weekday,getdate ())



function parameters/Functions
GetDate ()--Returns the current date and time of the system
DateDiff (INTERVAL,DATE1,DATE2)--Returns the difference between Date2 and date1 two dates in interval specified mode date2-date1
DATEADD (interval,number,date)--The date after number is added in the way specified by interval
DatePart (interval,date)---Returns the integer value corresponding to the specified portion of the date, interval
Datename (interval,date)--Returns the string name corresponding to the specified part of the date, interval

The setting values for the parameter interval are as follows:

Value abbreviations (SQL Server) Access and ASP descriptions
Year Yy yyyy 1753 ~ 9999
Quarter Qq Q Season 1 ~ 4
Month Mm M 1 ~ 12
Day of the year Dy y the number of days of the year, the day of the first 1-366
Day Dd D, 1-31
Weekday Dw W Day of the week, day of the week 1-7
Week Wk WW Week, week of the year 0 ~ 51
Hour Hh H 0 ~ 23
Minute Mi N min 0 ~ 59
Second Ss s seconds 0 ~ 59
Millisecond MS-MS 0 ~ 999

In Access and ASP, date () and now () are used to obtain system datetime, where Datediff,dateadd,datepart is also used in Access and ASP, and the usage of these functions is similar

Example:
1.GetDate () for SQL Server:select GetDate ()

2.DateDiff (' s ', ' 2005-07-20 ', ' 2005-7-25 22:56:32 ') returns a value of 514,592 seconds
DateDiff (' d ', ' 2005-07-20 ', ' 2005-7-25 22:56:32 ') returns a value of 5 days

3.DatePart (' W ', ' 2005-7-25 22:56:32 ') returns a value of 2 that is Monday (Sunday is 1, Saturday is 7)
DatePart (' d ', ' 2005-7-25 22:56:32 ') returns a value of 25, or 25th
DatePart (' y ', ' 2005-7-25 22:56:32 ') returns a value of 206 that is the No. 206 Day of the Year
DatePart (' yyyy ', ' 2005-7-25 22:56:32 ') returns a value of 2005 that is 2005

The SQL Server DATEPART () function returns a portion of the SQL Server datetime field.

The syntax for the SQL Server DATEPART () function is:
DATEPART (Portion, datetime)

where datetime is the SQL Server datetime field and the name of the section is one of the following: 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


--1. Write a function that implements the output time information (March 16, 2009 Monday pm) According to ' date of month, day of the week, morning afternoon '
Select Datename (Yy,getdate ()) + ' year ' +
Datename (Mm,getdate ()) + ' month ' +
Datename (Dd,getdate ()) + ' Day ' +
Datename (Weekday,getdate ()) +
Case when Datename (Hh,getdate ()) < "I ' am ' Else ' PM ' End
--2. Write the function, depending on the input time. The day of the year is output
Select DATEPART (dy,getdate ())
--3. Finding random output characters ' A-Z
Select char (97+abs (checksum (NEWID))%26)
Select char (97+rand () *26)

SQL time formatting:

Select CONVERT (varchar, GETDATE (), 120)
2004-09-1211:06:08

Select CONVERT (varchar), GETDATE (), 120)
----------
2009-04-09

Select CONVERT (varchar), GETDATE (), 23)
2010-06-21


Select Replace (replace (CONVERT (varchar, GETDATE (), 120), '-', '), ', '), ': ', ')
20040912110608

Select CONVERT (varchar), GETDATE (), 111)
2004/09/12

Select CONVERT (varchar), GETDATE (), 112)
20040912

Select CONVERT (varchar), GETDATE (), 102)
2004.09.12

Other date format conversion methods that I don't use:

Select CONVERT (varchar), GETDATE (), 101)
09/12/2004

Select CONVERT (varchar), GETDATE (), 103)
12/09/2004

Select CONVERT (varchar), GETDATE (), 104)
12.09.2004

Select CONVERT (varchar), GETDATE (), 105)
12-09-2004

Select CONVERT (varchar), GETDATE (), 106)
12 092004

Select CONVERT (varchar), GETDATE (), 107)
0912, 2004

Select CONVERT (varchar), GETDATE (), 108)
11:06:08

Select CONVERT (varchar), GETDATE (), 109)
091220041

Select CONVERT (varchar), GETDATE (), 110)
09-12-2004

Select CONVERT (varchar), GETDATE (), 113)
12 0920041

Select CONVERT (varchar), GETDATE (), 114)
11:06:08.177

Time-related SQL statement/sql get current time/sql time compare/sql time format

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.