select random sample sql

Solutions on MaxInterview for select random sample sql by the best coders in the world

showing results for - "select random sample sql"
Federica
02 Jan 2018
1 Using a SAMPLE clause, we can select random rows.
2SELECT * FROM table_name SAMPLE(10);