Hi
there is my sql:
SELECT Sum(threadviews) as Total,
Max(threadviews) as Maximum
FROM
forum
WHERE dateline >= UNIX_TIMESTAMP('2012-09-18')
AND dateline < UNIX_TIMESTAMP('2012-11-18')
Group by dateline
it print me this table:
Total Maximum
11 11
10 3
17 13
12 6
0 0
0 0
11 9
3 2
3 2
2 2
0 0
1 1
But I would like to sum row, could somebody help me with this
Thanks