What "row reduction clauses" does Oracle support? (for Excel Power Query)

206 Views Asked by At

I want to add an Oracle table as a data source in Excel 2016 Power Query (via ODBC):

enter image description here


At the bottom of the ODBC dialog, there is an option to specify the "Supported row reduction clauses (optional)":

enter image description here


Question:

What option applies to Oracle 18c?

  1. (None)
  2. TOP
  3. LIMIT and OFFSET
  4. LIMIT
  5. ANSI SQL-compatible
1

There are 1 best solutions below

0
Bob Jarvis - Слава Україні On

Oracle supports

OFFSET n ROWS

and

FETCH FIRST|NEXT n ROWS ONLY
or
FETCH FIRST|NEXT n ROWS WITH TIES

Docs here - see "row_limiting_clause"