Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 209 Bytes

ex42.md

File metadata and controls

14 lines (9 loc) · 209 Bytes

Exercise: 42

Find the names of ships sunk at battles, along with the names of the corresponding battles.

Solution

SELECT ship, battle
FROM outcomes
WHERE result = 'sunk'

References