Want to have a counter field that starts with a character followed by a number as a regular counter, but the counter should start with x number of zeros.
Example:
L00001 L00002 L00003
Is it possible to construct such counters in sql server?
Update:
It should be auto generated counter values that is incremented by 1 when a new row is added. The number of rows in the table is never going to be as large as L99999.
Its Sql server 2012 express im using.