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
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