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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T09:51:03+00:00 2026-05-27T09:51:03+00:00

Suppose I have an sql statement select a.Date, count(a.Id) as Apples from dbo.apples as

  • 0

Suppose I have an sql statement

select a.Date, count(a.Id) as Apples from dbo.apples as a group by a.Date

which yields a result

Date      Apples
10/1/2011 4
10/2/2011 6
10/4/2011 8

And I have a second query

select o.Date, count(o.Id) as Oranges from dbo.Oranges as o group by o.Date

which yields the result

Date      Oranges
10/2/2011 3
10/3/2011 5
10/4/2011 7

I would like to combine the two results into a single result like

Date      Apples Oranges
10/1/2011 4      0
10/2/2011 6      3
10/3/2011 0      5
10/4/2011 8      7

I tried

select select a.Date, count(a.Id) as Apples from dbo.apples as a group by a.Date
union 
select o.Date, count(o.Id) as Oranges from dbo.Oranges as o group by o.Date

which didn’t give me the expected results, what I got was more like

Date      Apples
10/1/2011 4   
10/2/2011 6
10/2/2011 3
10/3/2011 5
10/4/2011 8
10/4/2011 7

with no mention of Oranges.

What should the final sql statement look like (I prefer performant and concise over not).

  • 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-27T09:51:04+00:00Added an answer on May 27, 2026 at 9:51 am
    select date,sum(apples) as apples,sum(oranges) as Oranges
    from
    (
    select a.Date as theDate, count(a.Id) as Apples,0 as Oranges 
    from dbo.apples as a group by a.Date 
    union all
    select o.Date, 0 as apples, count(o.Id) as Oranges
     from dbo.Oranges as o 
     group by o.Date 
    ) xx
    group by theDate
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have a string 'nvarchar(50)', which is for example the T-SQL string segment
I have a problem in my select statement in my query. This sql query
Suppose I have a SELECT statement that returns some set of results. Is there
Hello from an SQL nO0b, I have three Select statements I want to join:
I have created an application which inserts data into a SQL database. Basically, from
An SQL statement like: select * from ( select '000000000000' as x from dual
Suppose i have this sql statement and I have executed a sql command to
I have an sql statement that is supposed to return 2 rows. the first
Suppose I have a PL/SQL stored procedure as follows: PROCEDURE do_something(foo VARCHAR2 DEFAULT NULL)
Suppose you have a table in SQL: Prices ------ 13.99 14.00 52.00 52.00 52.00

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.