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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T11:06:17+00:00 2026-06-15T11:06:17+00:00

I have this table that has 2 columns: ID, TypeID Each ID can have

  • 0

I have this table that has 2 columns:

ID, TypeID

Each ID can have multiple TypeIDs. In the query result i want to have the following:

ID, Count(TypeID = 10), Count(TypeID = 20 or 30), Count(TypeID 40 and 50)

The query itself should be as fast / performant as possible. Can anyon 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-15T11:06:18+00:00Added an answer on June 15, 2026 at 11:06 am

    Try this:

    SELECT 
      ID,
      SUM(CASE WHEN TypeID = 10 THEN 1 ELSE 0 END) "Count of 10",
      SUM(CASE WHEN TypeID IN (20, 30) THEN 1 ELSE 0 END) "Count of 30 or 20",
      SUM(CASE WHEN TypeID IN (40, 50) THEN 1 ELSE 0 END) "Count of 40 AND 50"
    FROM Table
    GROUP BY ID;
    

    For the last case: Count(TypeID 40 and 50) I think the predicate TypeID IN (40, 50) will work for you, since it will give the count of values 40 and 50.

    SQL Fiddle Demo

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

Sidebar

Related Questions

I have a table that has following columns id store_id store_name id and store_id
I have a SQlite3 table that has typeless columns like in this example: CREATE
I have a mySQL table that has a column like this: ID ----- 0352
I have a table that has records with a structure similar to this.. ID
I have a simple table that has this structure: <table> <thead> <tr> <td>Some info</td>
Lets say I have one table called REVIEWS This table has Reviews that customers
I have a messaging system (very basic) that has a table like this: **MESSAGE_ID**
I have a big table that has many columns. In different use cases I
I have a cell table that has several columns whose data may occasionally be
I have a table that has (for example) 4 columns. pk_table_id INT NOT NULL

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.