Hi folks, thanks for giving this a look -
I know the following query doesn't work, but it demonstrates what I'm trying to accomplish - query both total points and points for say the month of january in the same query - is this posible? If so, how?
This is what i would basically like to do more or less -
SELECT points as total_points, (points as monthly_points WHERE MONTH(ts) = 1) FROM TABLE players
Any help appreciated!
Thanks
Brad