how to select random rows from a table

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

showing results for - "how to select random rows from a table"
Capucine
18 Jan 2020
1 Using a SAMPLE clause, we can select random rows.
2SELECT * FROM table_name SAMPLE(10);