I need to create a random string of digits of given length
CREATE FUNCTION UniqConvert
(@calue as varchar(max),
@len as int)
The output should be of the length @len
and should be unique per input @value
I already asked similar question: Create random string of digits T-SQL This one has different concept