Which database invented the "limit" SQL query syntax?
Posted
by Howard
on Stack Overflow
See other posts from Stack Overflow
or by Howard
Published on 2010-06-12T13:55:46Z
Indexed on
2010/06/12
14:03 UTC
Read the original article
Hit count: 221
MySQL has a nice feature (although non standard) which allow to query resultsets' limit, offset as
SELECT * FROM TABLE LIMIT M, N;
Is it created by MySQL? or Postgres?
© Stack Overflow or respective owner