Questions tagged [random]
70 questions
0
votes
1 answer
SQL TOP statement, how to make sure it's "random"?
I was studying SQL where I encountered a TOP statement. i.e.
SELECT TOP 2 * FROM Persons
select at most 2 row from table Persons.
However, if I were to use it for statistical reason, I'd like such process to be random: i.e. independent of time and…
J C
- 103
- 3