sophryu99/TIL

SQL: Returning Random rows (Sampling)

Opened this issue · 0 comments

SELECT QUESTION
FROM Questions
ORDER BY RAND()  
LIMIT 1;