Click here to Skip to main content
15,911,030 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a simple 1000 row table which has a column named ID.

Now, I want a 10 rows in random order. How should i get it ?
Posted

Try:
SQL
SELECT TOP 10 * from MyTable ORDER BY NEWID()
 
Share this answer
 
Check my past answer

Select random data from database[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900