Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 241 Bytes

ex36.md

File metadata and controls

19 lines (15 loc) · 241 Bytes

Exercise: 36

List the names of lead ships in the database (including the Outcomes table).

Solution

SELECT class
FROM classes
WHERE class IN (
	SELECT name
	FROM ships
	UNION
	SELECT ship
	FROM outcomes
)

References