• This should work, there are other ways as well

    CREATE TABLE #Id

    (

    Id int

    )

    Insert into #Id

    Values (10),(12),(9),(15),(8),(4),(100),(29)

    Select Id,Right('000'+Convert(varchar,Id),3) from #Id

    _________________________________________________________________________
    SSC Guide to Posting and Best Practices