Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 217 Bytes

ex1.md

File metadata and controls

13 lines (9 loc) · 217 Bytes

Exercise: 1

Find the model number, speed and hard drive capacity for all the PCs with prices below $500.

Result set: model, speed, hd.

Solution

SELECT model, speed, hd
FROM PC
WHERE price < 500