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

The Archive Base Latest Questions

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

For the schema below, I need to get this report This is what I

  • 0

For the schema below, I need to get this report

This is what I have

select c.name, sr.name, count(o.order_id)
from contact c 
INNER JOIN accounts a
ON c.account_id=a.account_id
INNER JOIN sales_reps sr 
ON a.sales_rep_id =sr.sales_rep_id
INNER JOIN orders o
ON a.account_id =o.account_id
where o.order_id in (
    select SUM(oi.quantity*p.price) from 
    order_items oi INNER JOIN parts p
    on oi.part_id =p.part_id
)
group by a.account_id, c.name

But this does not give any results.

Please help.

  • 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-10T05:58:51+00:00Added an answer on June 10, 2026 at 5:58 am

    Your where condition is not right, how should be a order_id equal a sum?

    Try the below:

    select 
        c.name, sr.name, COUNT(o.order_id), SUM(op.order_total)
    FROM 
        contact c 
    INNER JOIN 
        accounts a ON c.account_id = a.account_id
    INNER JOIN 
        sales_reps sr ON a.sales_rep_id = sr.sales_rep_id
    INNER JOIN 
        orders o ON a.account_id = o.account_id
    INNER JOIN 
      (SELECT 
          oi.order_id, SUM(oi.quantity * p.price) AS order_total
      FROM 
          order_items oi 
      INNER JOIN 
          parts p ON oi.part_id = p.part_id 
      GROUP BY 
          oi.order_id
      ) op ON o.order_id = op.order_id
    WHERE o.delivery_data >= CURDATE()
    GROUP by c.contact_id
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to create program that creates a XML schema like below using System.Xml.XmlSchema
edit: my table schema below is poorly normalized as suggested and I have revamped
I have two tables names book_list and book_category . Schema is like below: book_list
Schema: Users ID Name Password Address ID Street UserID Both tables have an ID
I have this array which gets the last table from a database. However the
I may have a simple question, I need to know how to get to
I need to find a way to join two XML files when they have
I have setup Spinner with the layout below, and I wanted to get the
This is the database schema we have. t_RoleCombinations - These are all possible combination
I need to get the column names, primary keys, foreign keys, and other schema

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.