how to select random rows from table

Solutions on MaxInterview for how to select random rows from table by the best coders in the world

showing results for - "how to select random rows from table"
Azariah
12 Jun 2018
1 Using a SAMPLE clause, we can select random rows.
2SELECT * FROM table_name SAMPLE(10);