Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 212 Bytes

ex33.md

File metadata and controls

15 lines (11 loc) · 212 Bytes

Exercise: 33

Get the ships sunk in the North Atlantic battle. Result set: ship.

Solution

SELECT ship
FROM outcomes
WHERE result='sunk'
        AND battle = 'North Atlantic' 

References