If you have a nice, numeric sequential ID field on your table, you could do something like this:
Select table1.*
from table1
where id like '%01'
That would give you every 100th record. '%001' would give you every thousandth record and so on. Without such a friendly ID field, you could do it by generating a count field in a temp table and then doing the above on that temporary table. But, your DBMS has to support that feature to do that.