Skip to content
Advertisement

Adding Random Id for each unique value in table

I have the table like

I want the result to be like :

The same ID should have same random_ids. I’m using the update statement to generate the Random_IDs after creating the table.

Is there something else that I need to add to the update statement?

Please advise.

Advertisement

Answer

Why would you use update for this? Just generate the values when you insert them:

EDIT:

If your problem is collisions, then fix how you do the assignment. Just assign a number . . . randomly:

This is guaranteed to not return duplicates.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement