Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I got the following table:

**stats**

id INT FK
day INT    
value INT

I would like to create an SQL query that will sum the values in value column in the last day, last week and last month, in one statement.

So Far i got this:

select sum(value) from stats as A where A.day > now() - 1
union
select sum(value) from stats as B where B.day > now() - 7
union
select sum(value) from stats as C where C.day > now() - 30

This returns just the first sum(value), i was expecting 3 values to return.

Running: select sum(value) from stats as A where A.day > now() - X ( Where x = 1/7/30) in different queries works as it should.

What's wrong with the query? Thanks!

share|improve this question

1 Answer

UNION is implicit distinct. Use UNION ALL instead like so:

SELECT 'last day' ItemType, sum(value) FROM stats as A WHERE A.day > now() - 1
UNION ALL
SELECT 'last week', SUM(value) FROM stats as B WHERE B.day > now() - 7
UNION ALL
SELECT 'last month', SUM(value) FROM stats as C WHERE C.day > now() - 30

Note that: I added a new column ItemType to indicate what is the type of the sum value whether it is last day, last week or last month

share|improve this answer
You Rock. Thanks for the fast Answer! – user1782427 Nov 7 '12 at 12:10
@user1782427 - No, it was too late. – Mahmoud Gamal Nov 7 '12 at 12:11
+1 for being humble :D – JW 웃 Nov 7 '12 at 12:38
@JohnWoo - Thats not humble :D. – Mahmoud Gamal Nov 7 '12 at 12:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.