Random update a column with a list of value:
UPDATE TABLE t
SET column = elt(floor(rand()*3) + 1, 'value1', 'value2', 'value3');
Update join:
UPDATE TABLEA a
JOIN TABLEB b ON a.join_colA = b.join_colB
SET a.columnToUpdate = [something]