View Single Post
  #12  
Old 04-15-2010, 06:07 PM
nilbog nilbog is offline
Project Manager

nilbog's Avatar

Join Date: Oct 2009
Posts: 14,724
Default

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.]