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 6540827
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T11:01:42+00:00 2026-05-25T11:01:42+00:00

I have a table t1 and t2 which I join and order to form

  • 0

I have a table t1 and t2 which I join and order to form data set set1.

Two columns c1 and c2 form a unique identifier for the rows in set1.

I want to get all values from set1 after the first row with a specific c1 and c2.

I have a query like the one below which works, but it repeats the same subquery twice, which seems superfluous and overly complex even for Oracle:

SELECT * FROM
(
  SELECT row_number() OVER (ORDER BY c1, c3) myOrder, c1, c2, c3
  FROM t1, t2
  WHERE condition
  ORDER BY conditions
) sub1,
(
  SELECT sub1_again.myOrder FROM
  (
    SELECT row_number() OVER (ORDER BY c1, c3) myOrder, c2, c3
    FROM t1, t2
    WHERE condition
    ORDER BY conditions
  ) sub1_again
  WHERE sub1_again.c2 = "foo" AND sub1_again.c3 = "bar"
) sub2
WHERE sub1.myOrder >= sub2.myOrder
ORDER BY sub1.myOrder

It seems like SQL would have a simple way to do this, but I am not sure what to search for.
Is there a cleaner way to do this?

  • 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-25T11:01:43+00:00Added an answer on May 25, 2026 at 11:01 am
    SELECT * FROM (
      SELECT row_number() OVER (ORDER BY c1, c3) myOrder, c2, c3
            ,CASE WHEN c2 = "foo" AND c3 = "bar"
                  THEN row_number() OVER (ORDER BY c1, c3)
             END target_rn
      FROM t1, t2
      WHERE condition
      ORDER BY conditions
    ) WHERE myOrder > target_rn;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a join which deletes rows that match another table but the joining
I have two tables which I want to join together using a left outer
I have a table which has two varchar(Max) columns Column 1 Column 2 -----------------------
I have a table which holds flight schedule data. Every schedule have an effective_from
I have table Users which contains columns Login and Phone and I have table
I have a column called DayShift in a table which is of Yes/No data
I have a table containing some Timespans (as two TIME columns) Eg: TimeBegin TimeEnd
If I have table Test with two columns num1 and num2 and the following
I have two table i want to add one condition while using LEFT OUTER
I have a table with around 19 columns which contains reasonable large amount of

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.