Du kan ha ett inre val, till exempel:
SELECT count_of_foo, count(bar), baz
FROM (SELECT count(foo) as count_of_foo, bar, baz, other1, other2 FROM complex_query WHERE foo = bar HAVING count(foo) > 1) inner_query
GROUP BY count_of_foo, baz.
Detta ger dig möjligheten att lägga till fler grupper efter HAVING-satsen.