Due to the syntax of mySQL this statement is not allowed (a counted element cannot be used within the WHERE part):
Illegal syntax:
SELECT COUNT(x) AS amount ... WHERE amount > 0
But how do I handle a COUNTed element via WHERE ?
|
editNote that your original query may not do what you think it does. You probably want
This is because original answer:You do this with
The difference is important, since it allows you to limit which rows are counted with WHERE, and then limit the rows returned with HAVING. For instance, let's say I wanted to know how much money I made per department on sales of LESS THAN $10, only if it made more than $1000:
|
|||||||||||
|
|
You need to use SQL
|
|||
|
|