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);

Related questions

0 votes
asked Nov 8, 2021 in Sql by rajeshsharma
0 votes
asked Jan 17 in Oracle by AdilsonLima
...