Practice · History · Easy
Return the names of pharaohs whose name starts with the letter R, alphabetically.
Runs in your browser. No signup needed.
WHERE name LIKE ‘R%’.
SELECT name
FROM pharaohs
WHERE name LIKE 'R%'
ORDER BY 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.
Three kings named Ramesses appear here — the name means “Ra has fashioned him”. (Britannica)