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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T02:27:42+00:00 2026-06-09T02:27:42+00:00

DATA given: inventory_num_id inventory_group_id num code 9681066 100003894 211 E 9679839 100003894 212 E

  • 0

DATA given:

 inventory_num_id        inventory_group_id             num   code
         9681066                 100003894             211      E
         9679839                 100003894             212      E
         9687165                 100003894             213      E
         9680883                 100003894             214      I
         9710863                 100003894             515      E
         9681246                 100003894             516      E
         9682695                 100003894             517      E
         9681239                 100003894             518      E
         9685409                 100003894             519      E
         9679843                 100003894             520      C
         9679844                 100003894             521      C
         9714882                 100003894             522      E
         9679845                 100003894             523      I
         9681211                 100003894             524      E
         9681216                 100003894             525      E
         9682696                 100003894             526      E
         9681227                 100003894             527      E

Result examples should be like:

inventory_group_id   code start  end 
------------------   ---- -----  ---- 
         100003894      E   211   213
         100003894      I   214
         100003894      E   515   519
         100003894      C   520   521
         100003894      E   522
         100003894      I   523
         100003894      E   524   527

What operator should I use to make start as minimum and end as max value? And could you please explain what I should do when the end(maximum)is not supposed to present?

Can I use GROUP BY clause there somehow?

  • 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-06-09T02:27:45+00:00Added an answer on June 9, 2026 at 2:27 am

    Ann, be careful on the dark side of sql.
    There are more than one way to do it.
    Here is the answer:

    SELECT a.inventory_group_id,
       a.code,
      a.num        AS "start",
      decode(b.num,a.num,null,b.num) AS "end" FROM
      ( SELECT inventory_num_id,inventory_group_id,code,num
             , ROW_NUMBER() OVER (PARTITION BY inventory_group_id,code ORDER BY num) AS rn
        FROM inventory_num  a
        WHERE NOT EXISTS
              ( SELECT * 
                FROM inventory_num  prev
                WHERE prev.inventory_group_id = a.inventory_group_id
                and  PREV.CODE = a.code
                  AND prev.num = a.num - 1
              ) 
      )  a
    JOIN
      ( SELECT  inventory_num_id,inventory_group_id,code, num 
             , ROW_NUMBER() OVER (PARTITION BY inventory_group_id,code ORDER BY num) AS rn
        FROM inventory_num  a
        WHERE NOT EXISTS
              ( SELECT * 
                FROM inventory_num  next
                WHERE next.inventory_group_id = a.inventory_group_id
                and  next.CODE = a.code
                  AND next.num = a.num + 1
              )
      )  b
    ON  b.inventory_group_id = a.inventory_group_id and b.code = a.code
    AND b.rn  = a.rn
    order by 3;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i need to parse the JSON data given below. {result:[{bookId:142645,bookpb:MF, bookTs:1328999630000,clipStatus:D,bookDetail:{arrival:1,purchase:1,sold:1}, hierarchies:{categories:[4],events:[]},shopId:769752}, upto sold
i want to append unlimited number of HTML elements with data given as comment.
Given data like this C1<-c(3,-999.000,4,4,5) C2<-c(3,7,3,4,5) C3<-c(5,4,3,6,-999.000) DF<-data.frame(ID=c(A,B,C,D,E),C1=C1,C2=C2,C3=C3) How do I go about removing
Given data frame values are Group year Value A 2010 17 A 2011 18
In file data.hex, the data is given in hexadecimal form where the first digit
I am trying to sample a data frame from a given data frame such
In the following contrived example, data is given a warning due to it being
Another stupid question here regarding a SQL scenario. Given data such as: FieldKey DocumentKey
Given two data frames: C1<-c(3,4,4,4,5) C2<-c(3,7,3,4,5) C3<-c(5,6,3,7,4) DF<-data.frame(C1=C1,C2=C2,C3=C3) DF C1 C2 C3 1 3
For any given file data size, I want to be able to resize (or

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.