Search Results

3
votes

How do I select top 10 rows in a table without sorting?

if random order is needed, you can try select top 10 * from [tablename] order by newid() …