Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 182 Bytes

ex3.md

File metadata and controls

11 lines (8 loc) · 182 Bytes

Exercise: 3

Find the model number, RAM and screen size of the laptops with prices over $1000.

Solution

SELECT model, ram, screen
FROM laptop
WHERE price > 1000