Collections:
Getting Month and Weekday Names from DATATIME Values in SQL Server
How To Get Month and Weekday Names from DATETIME Values in SQL Server Transact-SQL?
✍: FYIcenter.com
In DATETIME values, the month part and weekday part have names. You can use the DATENAME() function to get the month name and weekday name from a DATETIME value in the following format:
DATENAME(datepart, date) returns NVARCHAR: "date" - the input date "datepart" - "month" or "weekday"
Here is a simple example:
DECLARE @submit_date DATETIME; SET @submit_date = '2007-05-19 16:10:41.403'; SELECT 'Posted in the month of ' + DATENAME(month, @submit_date) + ' on a '+DATENAME(weekday, @submit_date); GO Posted in the month of May on a Saturday
⇒ Getting Parts of DATETIME Values as Integers in SQL Server
⇐ Calculating Age in Days, Hours and Minutes in SQL Server
⇑ Date/Time Operations and Functions in SQL Server Transact-SQL
2017-02-14, 2272🔥, 0💬
Popular Posts:
Where to find answers to frequently asked questions on Transaction Management: Commit or Rollback in...
Can Date and Time Values Be Converted into Integers in SQL Server Transact-SQL? Can date and time va...
How To Create a Stored Program Unit in Oracle? If you want to create a stored program unit, you can ...
Why I Can Not Enter 0.001 Second in DATETIME values in SQL Server Transact-SQL? If you enter millise...
What is sqlservr.exe - Process - SQL Server (SQLEX?PRESS) in SQL Server? Process sqlservr.exe is the...