That's not a random sample -- that's a systematic sample. For a random sample you'd need
to know the actual IDs to highlight them, but for a systematic sample you just need to know
the modulus operator for your database and the selection starting point, then you can select
using a WHERE clause, e.g., WHERE mod(id,9) = 1. Keep in mind that the range of a modulus
is [0..N-1], so mod(9,9) = 0.
- V
PS: SQL-Server doesn't have a "mod" function, but it has an operator (e.g., WHERE id % 9 = 1)