What I mean is.. if you want to know how many particular people are playing a class above say.. level 10? They have put some time into it and they might play it again.
So, warriors might look like
Code:
SELECT
character_.class,
character_.level
FROM
character_
WHERE
character_.class = '1' AND
character_.level >= '10'
And the result would be ____ this many.
Trying to save you guys a lot of effort.
[You must be logged in to view images. Log in or Register.]