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:
sum(c_counts+f_counts)
SELECT
You could try this:
SELECT * FROM table ORDER BY (c_counts+f_counts) LIMIT 20