Answers for "how to select random rows from a table"

SQL
1

how to select random rows from a table

Using a SAMPLE clause, we can select random rows.
SELECT * FROM table_name SAMPLE(10);
Posted by: Guest on January-28-2021

Code answers related to "how to select random rows from a table"

Code answers related to "SQL"

Browse Popular Code Answers by Language