The question is simple: I want to do:
SELECT SUM((... a subquery that returns multiple rows with a single int value ...)) AS total;
How would I do that? I get an error saying that subquery returns more than one row. I need to have it in a subquery.
|
The question is simple: I want to do: SELECT SUM((... a subquery that returns multiple rows with a single int value ...)) AS total; How would I do that? I get an error saying that subquery returns more than one row. I need to have it in a subquery. |
|||
|
|
|
Here's an approach that should work for you:
And here's a specific dummy example to show the approach in action:
|
|||
|
|
|
Couldn't you just do the aggregation within the subquery?
(Untested!) |
|||
|
|