i have 1 million row data in my sql how do i QUERY effeciently and fastly TO TAKE N ELEMENTS FROM SQL SERVER here is my code
select * from Persons where Id in
(select top 10 ID from Persons order by newid())
is it good? or you another option?