Oct 11 2023 02:19 PM
I need to create "Student ID's" that are unique, not sequential numbers, and not GUIDs. Ideally, they would be easy to remember, so uppercase+numbers, and 7 to 10 digits long. I tried "ASCII-ifying" Guids, but the numbers were still horribly long.
I have seen some documents online that use a format like ?ID=AZ9DF6J3Z. is there any way to generate numbers like this, but guarantee uniqueness?
Oct 12 2023 10:00 PM
that are unique, not sequential numbers
@Bryan Valencia , why not sequential?
Add an IDENTITY column or one filled with a sequence value = sequential number.
Add a calculated column for the string format in mind or a trigger calcualting the format.
Oct 14 2023 01:34 PM