As compared to say: REPLICATE(@padchar, @len - LEN(@str)) + @str
|
1
|
|
|
|
|
|
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. |
||
|
|
|
|
How about this: replace((space(3 - len(MyField)) 3 is the number of zeros to pad |
||
|
|
|
|
Several people gave versions of this: right('XXXXXXXXXXXX'+ @str, @n) be careful with that because it will truncate your actual data if it is longer than n. |
||
|
|
|
|
probably overkill, I often use this UDF:
So that you can do things like:
|
||
|
|
|
In SQL Server 2005 and later you could create a CLR function to do this. |
||
|
|
|
|
|
||
|
|
|
|
Ew I wouldn't dirty my data like that. Perform the string manipulation in code instead. |
||
|
|
|
|
|
||
|
|
|
|
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: DECLARE @pad_characters VARCHAR(10) SET @pad_characters = '0000000000' SELECT RIGHT(@pad_characters + @str, 10) |
||
|
|
|
|
There is no more efficient way than that. |
||
|
|
