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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T05:46:10+00:00 2026-06-06T05:46:10+00:00

There are two tables: CREATE TABLE STORE ( ID INTEGER NOT NULL, MEDICINE_ID INTEGER

  • 0

There are two tables:

CREATE TABLE STORE ( 
  ID INTEGER NOT NULL,  
  MEDICINE_ID INTEGER NOT NULL,  
  SHIPMENT_ID INTEGER NOT NULL,  
  PACKAGE_ID INTEGER NOT NULL,  
  QUANTITY INTEGER NOT NULL);  

CREATE TABLE ORDERS (  
  ID INTEGER NOT NULL,  
  CLIENT_ID INTEGER NOT NULL,
  STORE_ITEM_ID INTEGER NOT NULL,
  QUANTITY INTEGER NOT NULL,
  ORDERDATE DATE NOT NULL,
  STATE INTEGER DEFAULT 1 NOT NULL);

I’ve wrote here only fields, no generators, triggers, key e.t.c.

The next view selects the most popular medicines per date:

CREATE VIEW ORDERS_STORE_QTY
AS
SELECT
  O1.ORDERDATE,
  S1.MEDICINE_ID,
  SUM(O1.QUANTITY) AS QTY
FROM ORDERS O1
INNER JOIN STORE S1 ON (S1.ID = O1.STORE_ITEM_ID)
WHERE O1.STATE=5 /* the closed order */
GROUP BY O1.ORDERDATE, MEDICINE_ID
ORDER BY O1.ORDERDATE, SUM(O1.QUANTITY) DESC

Then I do left join of the view with itself and in condition compare summary quantity:

SELECT T1.ORDERDATE, T1.MEDICINE_ID, T1.QTY
  FROM ORDERS_STORE_QTY T1
  LEFT OUTER JOIN ORDERS_STORE_QTY T2
  ON (
        T1.ORDERDATE = T2.ORDERDATE
        AND
        T2.QTY > T1.QTY 
     )
   GROUP BY T1.ORDERDATE, T1.MEDICINE_ID, T1.QTY
   HAVING COUNT(T2.MEDICINE_ID) < 5
   ORDER BY T1.ORDERDATE, T1.QTY DESC

If all the summary quantity per day would be different, I had no problem.
My task is to limit “best” medicines to five per day, but there are repeating quantities sometimes, so instead of sequence
0, 1, 2, 3, 4
I got:
0, 1, 2, 2, 2, 3, 4, 5 for example.

How can I change the query (I would prefer do not use generators and also do not use denormalization) to really limit the count of rows?

All the code is close to pure SQL (I do hope so) and written for Firebird 2.5.

  • 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-06T05:46:12+00:00Added an answer on June 6, 2026 at 5:46 am

    I believe you can change the on clause in the self join to:

    ON T1.ORDERDATE = T2.ORDERDATE AND 
       (T2.QTY > T1.QTY or
        (T2.QTY = T1.QTY and t2.Medicine_ID < t1.Medicine_ID)
       )
    

    What this does is to eliminate the ties by imposing a strict ordering — first by quantity and then by medicine id.

    Oh, if you used a database that supported window functions (row_number()), this would be much easier 😉

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There are two tables - posts and comments: create table posts ( id integer
There are two tables Table 1 select * from manage_tcp; +----+----------+--------+ | id |
There are two tables Table A id column_a 01 abc 01 abc 02 abc
There are two tables: Product , ProductProperty ProductProperty is a table that stores the
there are two tables tbldoctor and tblschedule tbldoctor doc_id(PK) docMrId docfname 1 22 manish
There are two tables: A, with rows (row_id, column1, ...) and B, with rows
There are two tables. One is users info users, one is comments info comments.
Lets say that there are two tables: Order ID (PK) DateExecuted OrderStep ID (PK)
Say, there are two tables. One contains a field with long text values (for
alt text http://img502.imageshack.us/img502/7245/75088152.jpg There are two tables that I join them together, one 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.