Skip to content
Advertisement

SQL select row(s) with max value calculated from different tables

I have the following two tables: 1. Allocation with two columns nurse and room 2. Room with two columns number and size (number of beds)

Allocation

Room

I need to identify all room(s) that have the highest number of nurses allocated per bed. This can be only one room or more than one if there is a tie.

The Result should show the Room number(s), which has the highest number of nurses allocated per bad.

I am not allowed to use JOIN operations. As I guess I need to select maximum value after dividing COUNT(nurse) by size and then select the rooms which correspond to that value. But, how can I do it when there are two tables?

Advertisement

Answer

You would use a correlated subquery if you cannot use JOIN. To get the rooms in order, then use:

How you get only the maxima depends on the database. The most canonical method is to use rank() with a subquery, but there are other methods as well.

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