Question: Exercise 8.2.3: Using the base tables Product (maker, model, type) PC(model, speed, ram, hd, price) suppose we create the view: CREATE VIEW NewPC AS SELECT


Exercise 8.2.3: Using the base tables Product (maker, model, type) PC(model, speed, ram, hd, price) suppose we create the view: CREATE VIEW NewPC AS SELECT maker, model, speed, ram, hd, price FROM Product, PC WHERE Product.model = PC.model AND type = 'pc
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
