J
James
Hello, is it possible using SQL to return results in
sections or pages? For example here is my query
SELECT TOP 20 accounts.Username as Username,
eb.ScoreTotal as ScoreTotal, eb.SecPlayed as SecPlayed,
eb.LevelNum as LevelNum FROM accounts,eb WHERE
accounts.Id = eb.GameId ORDER BY eb.ScoreTotal DESC,
eb.Id;
This gets the top 20 scores, how can I display scores 21-
40, and so on?
(I'm using ASP and an Access 2000 mdb)
sections or pages? For example here is my query
SELECT TOP 20 accounts.Username as Username,
eb.ScoreTotal as ScoreTotal, eb.SecPlayed as SecPlayed,
eb.LevelNum as LevelNum FROM accounts,eb WHERE
accounts.Id = eb.GameId ORDER BY eb.ScoreTotal DESC,
eb.Id;
This gets the top 20 scores, how can I display scores 21-
40, and so on?
(I'm using ASP and an Access 2000 mdb)