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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:51:56+00:00 2026-05-25T15:51:56+00:00

I have the below select query I perform, however it is alarmingly slow against

  • 0

I have the below select query I perform, however it is alarmingly slow against even ~6000 records and am curious if there is an alternate way to build the query?

select sum(Q.R) 
from (select 
        T.drawing_no,
        max(T.drawing_rev),
        T.R 
      from (select 
              drawing_no,
              drawing_rev,
              sum(price_total) as R 
            from data_pipe_drawing 
            where drawing_status="IP" 
            group by 
              drawing_no,
              drawing_rev) as T 
      group by T.drawing_no) as Q

In English the query finds all the drawings with a status of IP, rolls up the prices (price_total) by drawing_no+drawing_rev and then returns only the price_total of the highest revision for each drawing and rolls it all up for a grand price_total.

Thus before hitting the max(T.drawing_rev) if the query held:

 Drawing A Rev 1 Total Cost $100
 Drawing A Rev 0 Total Cost $50
 Drawing B Rev 0 Total Cost $200

The Drawing A Rev 0 is dropped from the grand total. The grand total is $300.

Hope this makes sense… thanks for any advice!

  • 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-25T15:51:57+00:00Added an answer on May 25, 2026 at 3:51 pm

    As per my comment, I don’t feel safe with the query you wrote, I’d do something with a correlated sub-query, like this…

      SELECT
    --  drawing_no,
        SUM(price_total)
      FROM
        data_pipe_drawing AS data
      WHERE
        drawing_status="IP" 
        AND drawing_rev = (SELECT MAX(drawing_rev) FROM data_pipe_drawing WHERE drawing_status = "IP" AND drawing_no = data.drawing_no)
    --GROUP BY
    --  drawing_no
    
    -- Commented lines useful for testing individual drawings
    

    Then have an index on (drawing_status, drawing_no, drawing_rev)

    Or possibly even this…

      SELECT
        SUM(data.price_total)
      FROM
        data_pipe_drawing AS data
      INNER JOIN
      (
        SELECT
          drawing_status,
          drawing_no,
          MAX(drawing_rev) AS drawing_rev
        FROM
          data_pipe_drawing
        GROUP BY
          drawing_status,
          drawing_no
      )
        AS lookup
          ON  lookup.drawing_number = data.drawing_number
          AND lookup.drawing_rev    = data.drawing_rev
          AND lookup.drawing_status = data.drawing_status
      WHERE
        data.drawing_status="IP" 
    

    EDIT

    Changed the JOIN based solution to possibly be friendlier for multiple drawing states, pending mor einfor from the OP.

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

Sidebar

Related Questions

I have written this query for retrieving data from mysql as below select FeedbackCode,EMailID,FeedbackDetail,
I have a very large query that follows the format below: select ... from
I have a problem with the query below in postgres SELECT u.username,l.description,l.ip,SUBSTRING(l.createdate,0,11) as createdate,l.action
I have the below query: SELECT p.id as prod_id, * FROM products AS p
I have the below SQL query: SELECT g.name AS gname, COUNT(u.id) AS noMembers, f.name
I have a query below, but I want to perform an Include() to eager
I have the below query: select CASE WHEN rt.ROLE_TYPE_CD = 'SA' THEN ap.APPL_CD +
I have tried the below query: select empno from ( select empno from emp
I have below SQL query: SELECT * FROM ( SELECT S.aCol, S.bCol, S.cCol, ROW_NUMBER()
I have this query below: SELECT a.id, b.item_name FROM table_1 as a INNER JOIN

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.