Where/Having on an aggregate function issue

531 Views Asked by At

I am writing a query:

SELECT COUNT( * ) AS  count , var1, var2
FROM  table 
GROUP BY var1, var2
ORDER BY  count DESC 

This query works but it grabs everything. I am trying to only get results where count > x (any arbitrary number).

I have tried using WHERE count > x and get:

1054 - Unknown column 'Spammers' in 'where clause'

If I use HAVING count > x (Added it at the very end) I get:

1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near

Other details: using Mysql 4.1

2

There are 2 best solutions below

1
On BEST ANSWER

You can use HAVING count(*) > x

Where x is an integer.

SELECT COUNT( * ) AS  count , var1, var2
FROM  table 
GROUP BY var1, var2
ORDER BY count(*) DESC 
Having count(*) > x
0
On

You need to use:

WHERE count(*) > x

You cant use an alias in a WHERE clause.

You can also use:

HAVING count(*) > x