WHAT'S NEW?

DATEPART and DATENAME usage

Had this requirement of reading the name and month value for one of our requirement today.
We used the easiest once -

DATEPART(month, Customer_joining_date)

this outputs the numeric month value. So if its January its 1, Feb then its 2.

DATENAME(month, Customer_joining_date)

this outputs the month name from the date time value. So if its in mm-dd-yyyy (08-26-1987 18:52:03:00) then it is will output's AUGUST.

SYSDATETIME() vs  GETDATE()

both of them will return the same current system date time but SYSDATETIME() will return that in DATETIME2 format with precision upto 7 digits.



0 comments:

Post a Comment