Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 253 Bytes

ex38.md

File metadata and controls

16 lines (13 loc) · 253 Bytes

Exercise: 38

Find countries that ever had classes of both battleships (‘bb’) and cruisers (‘bc’).

Solution

SELECT country
FROM classes
WHERE type = 'bc'
INTERSECT
SELECT country
FROM classes
WHERE type = 'bb'

References