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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T20:15:41+00:00 2026-06-13T20:15:41+00:00

Suppose I’ve got the following table: Room | Seats | Occupied ———————– a1 20

  • 0

Suppose I’ve got the following table:

Room | Seats | Occupied
-----------------------
a1      20       10
b2      15       15
c3      45       30
d4      20       15
e5      10       10

I have a trouble (just have no idea how that can be done) generating a SELECT statement that will merge some of the rooms and will sum up their values and will return the following:

Room | Seats | Occupied
-----------------------
a1      20       10
b2c3d4  80       60
e5      10       10

How can this be done?

Thank you in advance!

  • 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-13T20:15:43+00:00Added an answer on June 13, 2026 at 8:15 pm
    select room,
           sum(seats) as seats,
           sum(occupied) as occupied
    from your_table
    group by case when room in ('b2', 'c3', 'd4') 
                  then 'b2c3d4'
                  else room
             end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have the following table: PERSON : ID INT NAME STRING LASTNAME STRING
Suppose I have a pure virtual method in the base interface that returns to
Suppose I have a static method of my class that returns an object of
Suppose I have a class Baz that inherits from classes Foo and Bar ,
Suppose I have a process that is updating a record and encounters a record
Suppose I have a base class as following: class User: user_types = [] def
Suppose I have the following code in bash: #!/bin/bash bad_fruit=( apple banana kiwi )
Suppose we have the following: data Foo x from_list :: [x] -> Foo x
Suppose I have a data frame, df, that looks like: f t1 t2 t3
suppose I have the following serial C: int add(int* a, int* b, int n)

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.