If you wanted to generate a pseudorandom alphanumeric string using T-SQL, how would you do it? How would you exclude characters like dollar signs, dashes, and slashes from
Here is a random alpha numeric generator
print left(replace(newid(),'-',''),@length) //--@length is the length of random Num.