SQL query exercises:
Consider the following database schema:
Product(maker, model, type)
PC(model, speed, ram, hd, rd, price)
Laptop(model, speed, ram, hd, screen, price)
Printer(model, color, type, price)
Consider the Drivers-Cars-Reserves DB for a small rental car
company:
Drivers(id, name, rating, age)
Cars(vin, maker, model, year, color)
Reserves(did, vin, date)
Give SQL statement each of the following operations:
Find the colors of cars reserved by Smith.
Find all id’s of drivers who have a...