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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T12:18:59+00:00 2026-05-29T12:18:59+00:00

Conceptually, I have a table with a list of fruit items. I want, in

  • 0

Conceptually, I have a table with a list of fruit items. I want, in a single query, to see counts of how many apples, oranges, ‘apples or oranges’, and ‘other fruit’ there are.

How can I achieve this in T-SQL?

  • 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-29T12:18:59+00:00Added an answer on May 29, 2026 at 12:18 pm
    SELECT
       COUNT(*) AS Allfruits,
       COUNT(CASE WHEN fruit = 'Apple' THEN 1 END) AS AppleCount,
       COUNT(CASE WHEN fruit = 'Orange' THEN 1 END) AS OrangeCount,
       COUNT(CASE WHEN fruit IN ('Apple','Orange') THEN 1 END) AS AppleOrOrangeCount,
       COUNT(*) - COUNT(CASE WHEN fruit IN ('Apple','Orange') THEN 1 END) AS OtherFruitCount
    FROM
       MyTable
    

    Note: CASE gives NULL without an ELSE clause or some explicit condition. COUNT ignores NULL.

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

Sidebar

Related Questions

I have a table in my database in which records conceptually can be children
I have a table that looks like: What I want to do is output
I have a number of classes that are all related conceptually, but some more-so
I have two tables like so: create table doi ( id number primary key
In MySQL I have to check whether select query has returned any records, if
I have 3 fields in an employees table: personal_id , personal_id_type , and date_registered
What I want is pretty simple conceptually but I can't figure out how it
I have some tables and I can't get them to map. aspnet_Users UserId<PK> //Other
I have an SQL table consisting of: [title] ElementA ElementA ElementB ElementC ElementA ElementA
My scenario is this. I have a single entity composed of several rows in

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.