Login
Remember
Register
Ask a Question
How to select random rows from a table in SQL?
0
votes
asked
Jul 10, 2020
in
Sql
by
SakshiSharma
How to select random rows from a table?
#sql-random-rows
#select-random-row-sql
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 10, 2020
by
sharadyadav1986
Using a SAMPLE clause we can select random rows.
For Example,
SELECT * FROM table_name SAMPLE(10);
...