Skip to content
Advertisement

Getting the count of groups from a GROUP BY query – without using subquery

As an example, I have a relation called STUDENT with the following attributes:

I want to retrieve how many times there are more than 10 students with the same FACULTY, AGE and MAJOR (these attributes are non-key and non-unique).

I’m able to write a query for this, but I don’t want to be selecting from a subquery.

I have a solution to this which is as follows:

This gets me the expected result, however I want to write a query that doesn’t involve selecting from a subquery. Is there any alternative query to what I’ve given?

Advertisement

Answer

There doesn’t really seem to be anything wrong with what you are doing; but you could do:

That is, using nested aggregation; there’s also an example of this in the documentation.

We don’t have your data, so demo with the HR sample-schema employee table:

Having the subquery makes it a bit clearer what you are doing though.


You could also use subquery factoring I suppose, but as the name suggests that’s still a subquery – whether you have the same objection to that is unclear though:

or

Demo again:

You don’t actually need FACULTY, AGE, MAJOR, in the subquery, in either form (your original or using a CTE) since you don’t use them outside; you can group by expression you don’t select.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement