MySQL

Remplir une colonne avec des chiffres décimal aléatoires

UPDATE nom_table SET col_un = ROUND(RAND(2) * 100,2);
UPDATE nom_table SET col_deux = ROUND(RAND(3) * 100,2);
UPDATE nom_table SET col_trois = ROUND(RAND(4) * 100,2);
UPDATE nom_table SET col_quatre = ROUND(RAND(5) * 100,2);
UPDATE nom_table SET col_cinq = ROUND(RAND(6) * 100,2);