Welcome Guest, you are in: Login

devio dbscript ScrewTurn Wiki

RSS RSS

Navigation





Search the wiki
»

PoweredBy

dbo ufnLeadingZeros (function)

RSS
Modified on 2011/08/27 11:16 by wikibot Categorized as Uncategorized

wikibot

Functiondbo.ufnLeadingZeros
DescriptionScalar 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;

ScrewTurn Wiki version 3.0.1.400. Some of the icons created by FamFamFam.