DECLARE @day CHAR(2)
SET @day = DATEPART(DAY, GETDATE())
PRINT @day
If today was the 9th of December, the above would print "9".
I want to print "09". How do I go about doing this?
|
|
Pad it with 00 and take the right 2:
|
|||||||||||||
|
|
Use
For month, you'll need to use
|
|||||
|
Far neater, he says after removing tongue from cheek. Usually when you have to start doing this sort of thing in SQL, you need switch from can I, to should I. |
|||||
|
Roll your own methodThis is a generic approach for left padding anything. The concept is to use REPLICATE to create a version which is nothing but the padded value. Then concatenate it with the actual value, using a isnull/coalesce call if the data is NULLable. You now have a string that is double the target size to exactly the target length or somewhere in between. Now simply sheer off the N right-most characters and you have a left padded string.
Go nativeThe CONVERT function offers various methods for obtaining pre-formatted dates. Format 103 specifies
|
|||
|
|