Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6602819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:55:24+00:00 2026-05-25T18:55:24+00:00

I want do sorting by property ALL data in my db and ONLY AFTER

  • 0

I want do sorting by property ALL data in my db and ONLY AFTER that use LIMIT and OFFSET.

Query like this:

SELECT select_list
    FROM table_expression
    [ ORDER BY ... ]
    [ LIMIT { number | ALL } ] [ OFFSET number ] 

I know the sorting ends as soon as it has found the first row_count rows of the sorted result. Can I do sorting all data before calling LIMIT and OFFSET?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T18:55:25+00:00Added an answer on May 25, 2026 at 6:55 pm

    Prior to 12.1, Oracle does not support the LIMIT or OFFSET keywords. If you want to retrieve rows N through M of a result set, you’d need something like:

    SELECT a.*
      FROM (SELECT b.*,
                   rownum b_rownum
              FROM (SELECT c.*
                      FROM some_table c
                     ORDER BY some_column) b
             WHERE rownum <= <<upper limit>>) a
     WHERE b_rownum >= <<lower limit>>
    

    or using analytic functions:

    SELECT a.*
      FROM (SELECT b.*,
                   rank() over (order by some_column) rnk
              FROM some_table)
     WHERE rnk BETWEEN <<lower limit>> AND <<upper limit>>
     ORDER BY some_column
    

    Either of these approaches will sort give you rows N through M of the sorted result.

    In 12.1 and later, you can use the OFFSET and/or FETCH [FIRST | NEXT] operators:

    SELECT *
      FROM some_table
     ORDER BY some_column
     OFFSET <<lower limit>> ROWS
      FETCH NEXT <<page size>> ROWS ONLY
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to use a data structure for sorting space-time data (x,y,z,time). Currently a
I have an ObjectQuery like that: ObjectQuery<Car> query = GetCarQuery(); than i want to
I want to use Christian Bach's tableSorter client-side table sorting jQuery plugin with my
I want to have a model with calculated fields that I can apply sorting
I want to filter a property within a range, but items that does not
I have a GridView that use a stored procedure for custom paging and sorting
I want to run a query that converts the text from the field into
I have a huge table and I want simple sorting. It could be so
want to know why String behaves like value type while using ==. String s1
I've been looking at sorting array collections. So far I've seen things like sorting

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.