Answers for "t sql select random rows from table"

SQL
1

sql pick random row

SELECT column FROM table
ORDER BY RAND()
LIMIT 1
Posted by: Guest on March-22-2021
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 "t sql select random rows from table"

Code answers related to "SQL"

Browse Popular Code Answers by Language