convert date.month to text

Costas

Administrator
Staff member
references :
https://msdn.microsoft.com/en-us/library/ms174398(v=sql.105).aspx
http://stackoverflow.com/questions/185520/convert-month-number-to-month-name-function-in-sql

JavaScript:
--Specifies the language environment for the session. The session language determines the datetime formats and system messages.
SET LANGUAGE Greek;

--full month text
SELECT DATENAME(month, Last_Updated) from Customers

--way 1 short month text
SELECT CONVERT(CHAR(3), DATENAME(MONTH, Last_Updated)) from Customers

--way 2 short month text
SELECT CAST(Last_Updated AS CHAR(3)) from Customers
 
Top