As title, does it?
All I found is a list of predefined DateFormat that I can choose from, like this
As I remember in MySQL (and PostgeSQL too?) you can defines your Date Format:
i.e DATE_FORMAT(now(),'&m_%Y') --for 02_2012 etc.
Does SQL Server have the same thing? I see people have to write a function to do such thing, does it have a built-in one?
EDIT:
I just found DatePart function, I can take Month as number, but always 1 digits even I use datePart(MM, getdate())
