I have a table with two columns of text, where I want to randomize one column's data. So for example:
Text1 Text2
---------------
ABC DEF
GHI JKL
MNO PQR
STU VWX
to
Text1 Text2
---------------
ABC JKL
GHI VWX
MNO DEF
STU PQR
I am new to SQL and have no clue on how to do this.
Thanks in advance!