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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T13:28:04+00:00 2026-06-13T13:28:04+00:00

I have the following table: +—-+———-+————+ | id | drink | gender | +—-+———-+————+

  • 0

I have the following table:

+----+----------+------------+
| id | drink    | gender     |
+----+----------+------------+
|  1 | Beer     | m          |
|  2 | Milk     | f          |
|  3 | Milk     | f          |
|  4 | Tea      | m          |
+----+----------+------------+

Now I want to count which gender prefers which drink. The result should look like this:

+-------+-------+--------+
| drink | fem   | male   |
+-------+-------+--------+
|  Beer | 0     | 1      |
|  Milk | 2     | 0      |
|  Tea  | 0     | 1      |
+----+----------+--------+

Has anyone an idea?

Thanks in advance for your suggestions.

  • 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-13T13:28:04+00:00Added an answer on June 13, 2026 at 1:28 pm
    SELECT drink,
           SUM(CASE WHEN gender = 'f' THEN 1 ELSE 0 END) fem,
           SUM(CASE WHEN gender = 'm' THEN 1 ELSE 0 END) male
    FROM tableName
    GROUP BY drink
    

    SQLFiddle Demo

    the query above can be further be converted into prepared statement. This is helpful, if for instance, you manage to add another value for the gender (eg. u for unisex) without modifying the original query. example,

    SET @sql = NULL;
    SELECT
      GROUP_CONCAT(DISTINCT
        CONCAT(
          'SUM(case when gender = ''',
          gender,
          ''' then 1 ELSE 0 end) AS ',
          gender
        )
      ) INTO @sql
    FROM tableName;
    
    SET @sql = CONCAT('SELECT drink, ', @sql, ' 
                       FROM tableName 
                       GROUP BY drink');
    
    PREPARE stmt FROM @sql;
    EXECUTE stmt;
    DEALLOCATE PREPARE stmt;
    

    SQLFiddle Demo

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

Sidebar

Related Questions

I have following table schema: UserID | LoginTime Now, I want to fetch those
I have following table where each row has a unique ID. Now I want,
I have following table alt text http://img683.imageshack.us/img683/930/town.png I want to update its TownId from
I have the following table which allows a person to enter data. What I'm
I have following table which saves sales data for specific week of a year.
I have following table with some rows and want to disable the all the
I have the following table in MSSQL2005 id | business_key | result 1 |
I have following table ID | Group | Type | Product 1 Dairy Milk
I have following Table with records for ActivityLog: ID, UserId, Category, Created 1 11
I have following table Id | Status | date ------------------- 1 | Onsite |2007

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.