I have an MySQL query
SELECT *,
(SELECT COUNT(*) FROM B WHERE B.AID = A.ID) AS Sum1,
(SELECT COUNT(*) FROM C WHERE C.AID = A.ID) AS Sum2
FROM A
What are possible alternatives using joins or so?
|
I have an MySQL query
What are possible alternatives using joins or so? |
|||
|
This would work if there are unique IDs in the B and C tables. In my example the fields are called ID.
|
|||
|
|
|||||
|
|
|
Not sure if this is what you are looking for, here is how it could be achieved using a http://sqlfiddle.com/#!2/1e65c/2
|
|||
|
|
JOIN-able query since the two counts might differ. – tadman Jan 31 at 16:10