Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 200 Bytes

ex31.md

File metadata and controls

12 lines (9 loc) · 200 Bytes

Exercise: 31

For ship classes with a gun caliber of 16 in. or more, display the class and the country.

Solution

SELECT class, country 
FROM Classes
WHERE bore>=16

References