This is my table structure
Date(m/dd/yyyy)
9/09/2006
I want to select month and year in the below format .
Sep 2006 .
How to do that ?
Try this..
SELECT CONVERT(CHAR(6),GETDATE(),109)
|||Sorry Raghu,
Try this..
SELECT LEFT(CONVERT(CHAR(11),GETDATE(),109),3) + ' ' + RIGHT(CONVERT(CHAR(11),GETDATE(),109),4)
|||
Or:
SELECT LEFT(DATENAME(month,'9/09/2006'),3) + ' ' + CONVERT(CHAR(4),Year('9/09/2006')) as DateYouwant
No comments:
Post a Comment