Answers for "select a random row from table MSSQL"

SQL
1

sql pick random row

SELECT column FROM table
ORDER BY RAND()
LIMIT 1
Posted by: Guest on March-22-2021

Code answers related to "select a random row from table MSSQL"

Code answers related to "SQL"

Browse Popular Code Answers by Language