Code:
update t
set f = UUID()
where id = 5
This will give for each record its own UUID
I want same UUID for each record !
I know how to do it in two separate sql-s, but I'm almost sure that could be done with one sql only (creating & using varaible inside sql).
How to do it, if possible ?