I have a table with 5 columns in it, what's the easiest way to select all rows, but where each column is individually randomised?
All I can think of is to select each column separately, along with
row_number over ( order by newid()) as lookup
and then join each column back together on lookup.
Is there an easier way?
Thanks