how to select random rows from a table code example
Example: how to select random rows from a table
Using a SAMPLE clause, we can select random rows.
SELECT * FROM table_name SAMPLE(10);
Using a SAMPLE clause, we can select random rows.
SELECT * FROM table_name SAMPLE(10);