subject

Write the following queries in SQL based on the following schema:COP5725 - Spring 2011• Product(maker, model, type)• PC(model, speed, ram, hd, price)• Laptop(model, speed, ram, hd, screen, price)• Printer(model, color, type, price)a) Give the manufacturer and speed of laptops with a hard disk of at least 30 gigabytesSELECT R. maker AS manufacturer, L.speed AS gigahertzFROM Product R, Laptop LWHERE L. hd>= 30AND R. model = L. modelAND R. type= ‘laptop’;b) Find the model number and price of all products (of any type) made by manufacturer 'B'SELECT R. model, P. price FROM Product R, PC PWHERE R. maker= 'B‘ AND R. model = P. modelUNIONSELECT R. model, L. price, FROM Product R, Laptop LWHERE R. maker= 'B‘ AND R. model = L. modelUNIONSELECT R. model, T. price FROM Product R, Printer TWHERE R. maker= 'B’ AND R. model = T. model ;c) Find those manufacturers that sell Laptops, but no PC'sSELECT R. makerFROM Product R, Laptop LWHERE R. model = L. model and R. Type= ‘Laptop’EXCEPTSELECT R. makerFROM Product R, PC PWHERE R. model = P. model and R. Type= ‘PC’ ;d) Find those hard-disk sizes that occur in two or more PC'sSELECT DISTINCT P1.hdFROM PC P1, PC P2WHERE P1.hd = P2.hd AND P1.model > P2.model ;Alternate SELECT DISTINCT P. hdFROM PC PGROUP BY P. hdHAVING COUNT(*) >= 2 ;

ansver
Answers: 2

Other questions on the subject: Computers and Technology

image
Computers and Technology, 21.06.2019 18:30, naomicervero
What type of weird relationship this is analogy show? dissolve: solidify: : noise: silence
Answers: 2
image
Computers and Technology, 22.06.2019 20:00, jayjay5246
What is the term for water wave that is created by an underwater earthquake
Answers: 1
image
Computers and Technology, 22.06.2019 21:40, tdahna0403
Develop a function to create a document in the mongodb database “city” in the collection “inspections.” be sure it can handle error conditions gracefully. a. input -> argument to function will be set of key/value pairs in the data type acceptable to the mongodb driver insert api call b. return -> true if successful insert else false (require a screenshot)
Answers: 2
image
Computers and Technology, 23.06.2019 16:30, jessisjawsome
If i wanted to include a built-in calendar in a document, what option could i select? draw table insert table insert chart quick tables
Answers: 1
You know the right answer?
Write the following queries in SQL based on the following schema:COP5725 - Spring 2011• Product(make...

Questions in other subjects:

Konu
Mathematics, 07.05.2020 12:57