Queries with derived tables (II)
In this exercise, you will create a derived table to return all patient records with the highest BloodPressure at their Age level.```
```
This exercise is part of the course
Intermediate SQL Server
Exercise instructions
- Create a derived table
- returning
AgeandMaxBloodPressure; the latter is the maximum ofBloodPressure. - is taken from the
kidneytable. - is grouped by
Age.
- returning
- Join the derived table to the main query on
- blood pressure equal to max blood pressure.
- age.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
SELECT *
FROM Kidney a
-- Create derived table: select age, max blood pressure from kidney grouped by age
JOIN (___) b
-- JOIN on BloodPressure equal to MaxBloodPressure
ON ___
-- Join on Age
AND ___