Skip to content
Advertisement

There are a method to paging using ANSI SQL only?

I know:

  • Firebird: FIRST and SKIP;
  • MySQL: LIMIT;
  • SQL Server: ROW_NUMBER();

Does someone knows a SQL ANSI way to perform result paging?

Advertisement

Answer

See Limit—with offset section on this page: http://troels.arvin.dk/db/rdbms/

BTW, Firebird also supports ROWS clause since version 2.0

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement