Difference between revisions of "Dbo.ufnLeadingZeros (function)"
(New page: == wikibot == {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" |- | '''function | dbo.ufnLeadingZeros |- |} <pre> CREATE FUNCTION [dbo].[ufnLeadingZeros]( ...) |
(No difference)
|
Revision as of 13:36, 3 January 2009
wikibot
| function | dbo.ufnLeadingZeros |
CREATE FUNCTION [dbo].[ufnLeadingZeros](
@Value int
)
RETURNS varchar(8)
WITH SCHEMABINDING
AS
BEGIN
DECLARE @ReturnValue varchar(8);
SET @ReturnValue = CONVERT(varchar(8), @Value);
SET @ReturnValue = REPLICATE('0', 8 - DATALENGTH(@ReturnValue)) + @ReturnValue;
RETURN (@ReturnValue);
END;