Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 156 Bytes

ex2.md

File metadata and controls

13 lines (9 loc) · 156 Bytes

Exercise: 2

List all printer makers.

Result set: maker.

Solution

SELECT DISTINCT p1.maker
FROM Product p1
WHERE p1.type = 'printer'