In a test at university there was a question; is it possible to use an aggregate function in the SQL WHERE clause.
SQL WHERE
I always thought this isn\'t possibl
You can't use an aggregate directly in a WHERE clause; that's what HAVING clauses are for.
You can use a sub-query which contains an aggregate in the WHERE clause.