So wählen Sie zufällige Zeilen aus der Tabelle aus
Using a SAMPLE clause, we can select random rows.
SELECT * FROM table_name SAMPLE(10);
Obedient Ocelot
Using a SAMPLE clause, we can select random rows.
SELECT * FROM table_name SAMPLE(10);