0 votes
in Sql by
How to select random rows from a table?

1 Answer

0 votes
by
Using a SAMPLE clause we can select random rows.

For Example,

SELECT * FROM table_name SAMPLE(10);
...