Comment sélectionner des lignes aléatoires dans la table

 Using a SAMPLE clause, we can select random rows.
SELECT * FROM table_name SAMPLE(10);
Obedient Ocelot