I have a table: "ID name c_counts f_counts "
and I want to order all the record by sum(c_counts+f_counts)
but this doesn't work:
SELECT * FROM table ORDER BY sum(c_counts+f_counts) LIMIT 20;
|
I have a table: "ID name c_counts f_counts " and I want to order all the record by
|
|||||
|
|
Don'y forget that if you are mixing grouped (ie. SUM) fields and non-grouped fields, you need to GROUP BY one of the non-grouped fields. Try this:
OR this:
And you can always do a derived query like this:
Many possibilities! |
|||||
|
|
This is how you do it
The SUM function will add up all rows, so the |
|||
|
|
Without a GROUP BY clause, any summation will roll all rows up into a single row, so your query will indeed not work. If you grouped by, say, name, and ordered by sum(c_counts+f_counts), then you might get some useful results. But you would have to group by something. |
|||
|
|
|
The problem I see here is that "sum" is an aggregate function. first, you need to fix the query itself.
then, you can sort it:
EDIT: But see post by Virat. Perhaps what you want is not the sum of your total fields over a group, but just the sum of those fields for each record. In that case, Virat has the right solution. |
|||
|
|