select top 10 percent * from [yourtable] order by newid() In response to the "pure trash" comment concerning large tables: you could do it like as athis to improve performance alternative.
select * from [yourtable] where [yourPk] in (select top 10 percent [yourPk] from [yourtable] order by newid()) The cost of this will be the key scan of values plus the join cost, which on a large table with a small percentage selection should be reasonable.