As compared to say:
REPLICATE(@padchar, @len - LEN(@str)) + @str
|
|
This is simply an inefficient use of SQL, no matter how you do it. perhaps something like
where X is your padding character and @n is the number of characters in the resulting string (assuming you need the padding because you are dealing with a fixed length). But as I said you should really avoid doing this in your database. |
|||||||||||||
|
|
Several people gave versions of this:
be careful with that because it will truncate your actual data if it is longer than n. |
||||
|
|
|
|||
|
|
|
Perhaps an over kill I have these UDFs to pad left and right
and to right
|
|||||
|
|
probably overkill, I often use this UDF:
So that you can do things like:
|
|||||
|
|
I liked vnRocks solution, here it is in the form of a udf
|
|||
|
|
|
this is a simple way to pad left:
Where sample:
|
||||
|
|
I'm not sure that the method that you give is really inefficient, but an alternate way, as long as it doesn't have to be flexible in the length or padding character, would be (assuming that you want to pad it with "0" to 10 characters:
|
||||
|
|
|
How about this: replace((space(3 - len(MyField)) 3 is the number of zeros to pad |
|||
|
|
|
I hope this helps someone. STUFF ( character_expression , start , length ,character_expression ) select stuff(@str, 1, 0, replicate('0', @n - len(@str))) |
|||
|
|
|
To provide numerical values rounded to two decimal places but right-padded with zeros if required I have:
If anyone can think of a neater way, that would be appreciated - the above seems clumsy. Note: in this instance, I'm using SQL Server to email reports in HTML format and so wish to format the information without involving an additional tool to parse the data. |
||||
|
|
Here is how I would normally pad a varchar
|
|||