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

  • Home
  • SEARCH
  • 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 8518311
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T05:56:43+00:00 2026-06-11T05:56:43+00:00

What one query can produce table_c ? I have three columns: day, person, and

  • 0

What one query can produce table_c?

I have three columns: day, person, and revenue_per_person. Right now I have to use two queries since I lose ‘person’ when producing table_b.

table_a uses all three columns:

SELECT day, person, revenue_per_person
FROM purchase_table
GROUP BY day, person

table_b uses only two columns due to AVG() and GROUP BY:

SELECT day, AVG(revenue) as avg_revenue
FROM purchase_table
GROUP BY day

table_c created from table_a and table_b:

SELECT 
   CASE 
   WHEN revenue_per_person > avg_revenue THEN 'big spender'
   ELSE 'small spender'
   END as spending_bucket
FROM ????
  • 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-11T05:56:44+00:00Added an answer on June 11, 2026 at 5:56 am

    Maybe this could help, try this one

    SELECT a.day,
        CASE 
            WHEN a.revenue_per_person > b.avg_revenue THEN 'big spender'
            ELSE 'small spender'
       END as spending_bucket
    FROM
        (
            SELECT day, person, AVG(revenue) revenue_per_person
            FROM purchase_table
            GROUP BY day, person
        ) a INNER JOIN
        (
            SELECT day, AVG(revenue) as avg_revenue
            FROM purchase_table
            GROUP BY day
        ) b ON a.day = b.day
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can i manage this query. I want to have only one person in
On Google App Engine to query the data store with Python, one can use
I have one query. Through while loop I am displaying three random songs from
I have a two tables, one that contains basic resource info, with columns and
How can I create one query using both ICriteria and Linq? Example: var q
Hoe can I do following thing without using a VIEW from one Query. !--CREATE
How can I do one single query with both an INSERT and SELECT in
How can I write a query similar to this one in LINQ to SQL
Can any one tell, how to get the result of LINQ query contains group
I have one query on which I would like to get your valuable feedback.

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.