1
Answer

how to get random 5 record in sql

how to get random 5 record in sql
 
SELECT top 5 * from table1 order by NEWID() 

Answers (1)