Question:Which of the following statements will create a table special_products which is a child of the table store_products? 

A CREATE TABLE special_products (quality int) INHERITS store_products; 

B CREATE TABLE special_products (quality int) EXTENDS store_products; 

C CREATE TABLE special_products (quality int) EXPANDS store_products; 

D CREATE TABLE special_products (quality int) FROM store_products; 

E CREATE TABLE special_products (quality int) WITH PARENT store_products; 

+ Answer
+ Report
Total Preview: 626

Copyright © 2024. Powered by Intellect Software Ltd