Difference between revisions of "Dbo.ufnLeadingZeros (function)"
| Line 3: | Line 3: | ||
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
|- | |- | ||
| − | | ''' | + | | '''Function |
| dbo.ufnLeadingZeros | | dbo.ufnLeadingZeros | ||
|- valign="top" | |- valign="top" | ||
| Line 11: | Line 11: | ||
|} | |} | ||
| + | |||
| + | === Source === | ||
<pre> | <pre> | ||
CREATE FUNCTION [dbo].[ufnLeadingZeros]( | CREATE FUNCTION [dbo].[ufnLeadingZeros]( | ||
| Line 27: | Line 29: | ||
END; | END; | ||
</pre> | </pre> | ||
| − | |||
Revision as of 22:52, 2 February 2010
wikibot
| Function | dbo.ufnLeadingZeros |
| Description | Scalar function used by the Sales.Customer table to help set the account number. |
Source
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;
automatically generated
| function | dbo.ufnLeadingZeros |
| Description | Scalar function used by the Sales.Customer table to help set the account number. |
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;