vote up 0 vote down star

Using MySQL syntax, how would I write a query to return the following (I am including the two table descriptions and the relationship between them):

TABLE_A (ID, DATE, TABLE_C_ID)
TABLE_B (ID, AMOUNT, TABLE_A_ID)
TABLE_C (ID)

I want to return the following, with the specified limitations:

SELECT 
    TABLE_A.ID, 
    TABLE_A.DATE 
    (SUM TABLE_B.AMOUNT 
         FROM TABLE_B 
         WHERE TABLE_B.ID = TABLE_A.ID) 
    FROM TABLE_A, TABLE_B 
    WHERE TABLE_A.TABLE_C_ID = 123

Thanks in advance.

flag

1 Answer

vote up 2 vote down check

What's wrong with doing it thus?:

SELECT 
    TABLE_A.ID, 
    TABLE_A.DATE,
    SUM( TABLE_B.AMOUNT ) AS AMOUNT

FROM TABLE_A

INNER JOIN TABLE_B 
ON TABLE_B.ID = TABLE_A.ID

WHERE TABLE_A.TABLE_C_ID = 123

GROUP BY TABLE_A.ID, 
    TABLE_A.DATE
link|flag
didn't work, I'll post some specifics in the question – Elie Jan 4 '09 at 23:05
Woops, never mind... I was not saving some data properly. Fixed, thanks! – Elie Jan 4 '09 at 23:19

Your Answer

Get an OpenID
or

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