Can you name one popular database that does not support the LIMIT operator?

Drupal uses db_query_range()for the reason that not all databases support LIMIT,

can you name a few?

+3
source share
5 answers

DB2, MSSQL, Oracle, and Informix do not support LIMIT. This is actually not in the SQL standard. (Standard is "FETCH FIRST").

Here is a good source for comparing SQL: http://troels.arvin.dk/db/rdbms/#select-limit

+6
source

Microsoft SQL Server LIMIT. TOP, . TOP .

+3

ms sql, oracle.

LIMIT ANSI SQL '92, . / / sql

+2

DB2, Oracle MS SQL Server LIMIT.

Google <database name> LIMIT, LIMIT.

+2

, ANSI-92 SQL ROW_NUMBER() , . . SELECT (SQL) .

0

Source: https://habr.com/ru/post/1745400/


All Articles