4

Is there anyway to do a limit in MS Access, like I would using MySQL.

For example:

select * from cars limit 10,20

I'm implementing the database access in C#.

Bildsoe
  • 1,310
  • 6
  • 31
  • 44

1 Answers1

6

There is no direct equivalent to MySQL's 2-argument LIMIT in MS Access.

There is TOP x:

select TOP 20 * from cars 

See: In Access97 SQL how do I return a range of rows?

Community
  • 1
  • 1
Mitch Wheat
  • 295,962
  • 43
  • 465
  • 541