Practice · History · Medium
Return the names of monuments built by a pharaoh from the New Kingdom era, alphabetically.
Runs in your browser. No signup needed.
monuments JOIN pharaohs on builder = name, then filter WHERE the pharaoh’s era = ‘New Kingdom’.
SELECT m.name
FROM monuments m
JOIN pharaohs p ON m.builder = p.name
WHERE p.era = 'New Kingdom'
ORDER BY m.name;
The reference solution is checked automatically when you run your query on the practice page — results are compared row by row, and order matters for this one.
The New Kingdom (Dyn. XVIII–XX) was Egypt at its imperial height — the era of Hatshepsut, Tutankhamun and Ramesses II. (Oxford History of Ancient Egypt)