I'm new in SQL query language. I have to write a SELECT statement to choose 3 attributes from two different tables. How do I write that?
Thanks in advance.
My base contains the following tables with the following data:
Product(maker, model, type)
PC(code, model, speed, ram, hd, cd, price)
Laptop(code, model, speed, ram, hd, screen, price)
Printer(code, model, color, type, price)
(From comment on David Browne's answer.)
And I should get the model, ram and screen from PC and Laptop tables, of the computers, whose price is higher then 1000.