I would like to page my database over 100 pages, each 1 percent at a time... The only problem is this database is an MS Access database(not by choice). My current sql statement in my code is
$sql= "SELECT TOP 1 PERCENT * FROM [Drive Errors] ORDER BY [Position]ASC";
Is this even possible due to the top function pulling from only the top of the database?