Query to get the below as output is required.
How can I get ouput as 27AUG13 in SQL SEVER?
Please suggest
Query to get the below as output is required.
How can I get ouput as 27AUG13 in SQL SEVER?
Please suggest
It's a bit of a hack, but the following works:
SELECT replace(convert(varchar(10), getdate(), 6), ' ', '')
The internal convert(varchar, getdate(), 6)
returns (at least, today) "28 Aug 13", with the replace
then removing the spaces.
Perhaps (works also in SQL-Server 2005 without DATE
):
SELECT CONVERT(VARCHAR(12), GETDATE(),6) AS [TodaysDate]
DEMO 28 Aug 13
The following will have spaces:
You can replace spaces: