I have a table on SQL2000 with a numeric column and I need the select to return a 01, 02, 03...
It currently returns 1,2,3,...10,11...
Thanks.
|
|
I have a table on SQL2000 with a numeric column and I need the select to return a 01, 02, 03... It currently returns 1,2,3,...10,11... Thanks.
|
|||
|
|
|
|
Does this work?
From http://foxtricks.blogspot.com/2007/07/zero-padding-numeric-value-in-transact.html |
||
|
|
|
|
This sort of question is about the interface to the database. Really the database should return the data and your application can reformat it if it wants the data in a particular format. You shouldn't do this in the database, but out in the presentation layer. |
||
|
|
|
|
where n is a positive integer between 0 and 99:
or
but I like John's answer best. Single point of specification for target width, but I posted these because they are also common idioms that might work better in other situations or languages. |
||
|
|
|
|
John's answer works and is generalizable to any number of digits, but I would be more comfortable with
|
||
|
|