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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T19:58:56+00:00 2026-06-13T19:58:56+00:00

I have this RoomTable with value SID Room Date APhase BPhase ACount BCount 1

  • 0

I have this RoomTable with value

SID   Room   Date        APhase   BPhase   ACount  BCount
1     One    10/28/2012  4        5         3       6
2     One    10/29/2012  2        3        -1      -1
3     One    10/30/2012  4        5         7      -1
4     Two    10/28/2012  8        3         2       3
5     Two    10/30/2012  3        5         4       6
6     Three  10/29/2012  5        8         2      -1
7     Three  10/30/2012  5        6        -1       4
8     Four   10/29/2012  6        2        -1      -1
9     Four   10/30/2012  5        8        -1      -1

What I want is to return the following:

  1. Total sum of APhase and BPhase of each Room.
  2. Value of ACount and BCount from max date of each Room
  3. If ACount value is -1 then use the previous date. Same as BCount.
  4. If ACount value is -1 and the previous date is -1 and so on. Then use 0. Same as BCount.

I can get the query of number 1 with this query

SELECT Room, sum(APhase) as TotalAPhase, sum(BPhase) as TotalBPhase 
FROM RoomTable 
WHERE Date between '10/28/2012' and '10/30/2012'
group by Room
order by Room

But I’m confused on how to include the number 2-4 query.

This is the output I want

Room  TotalAPhase  TotalBPhase  ACount   BCount
One   10           13           7        6
Two   11           8            4        6
Three 10           13           2        4
Four  11           10           0        0

Any ideas will be much appreciated. Thanks.

  • 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-13T19:58:58+00:00Added an answer on June 13, 2026 at 7:58 pm

    Hope this works for your case:

    SELECT 
    Room
    ,SUM(APhase) AS TotalAPhase
    ,SUM(BPhase) AS TotalBPhase 
    ,ISNULL((    SELECT TOP 1 RT1.ACount 
                 FROM RoomTable RT1 
                 WHERE RT1.Room = RT.Room 
                    AND RT1.ACount != -1
                 ORDER BY RT1.Date DESC
    ), 0) AS ACount
    ,ISNULL((   SELECT TOP 1 RT2.BCount 
                FROM RoomTable RT2
                WHERE RT2.Room = RT.Room 
                   AND RT2.BCount != -1
                ORDER BY RT2.Date DESC
    ), 0) AS BCount
    
    FROM RoomTable RT
    --WHERE Date between '10/28/2012' and '10/30/2012'
    GROUP BY Room
    ORDER BY Room
    

    I am not sure if you really need that where clause so I commented it out. And the value of TotalBPhase for Room Three on your result table should be 14, as can be seen from this SQL Fiddle demo.

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

Sidebar

Related Questions

Have this query: SELECT HOUR( DATE ) AS hr, COUNT( * ) AS cnt
I have this string 2012-06-27 16:17:06 and I want to convert it to GMT
I have this piece of code in one of my .jade files: each item
Lets say that I have to do this dynamic PUT request: http://mydomain.com/api/5?value=66 The body
I have two tables like this usertable RoleTable ----------------------- --------------------------- UserID|UserName|Pwd|RoleID RoleID|RoleName 1 |Anil
Hi Guys i have two tables which look like this usertable RoleTable ----------------------- ---------------------------
Have this self-made slider: http://jsfiddle.net/wyc3P/4/ What it does: takes min and max values in
I have this application where I implement the ActionBar Fragment interface. Underlying the interface,
I have this form, in which i need to populate a combo box with
I have this form: <%= form_tag posts_path, :method => :get, :class => search_nav do

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.