I am trying to create a table using a disjoint subtype relationship
.
For example, if the Supertype
is furniture, and I have 3 Subtypes
of furniture: chair, couch, and table.
Then:
CREATE TABLE Furniture
(order_num NUMBER(15), desc VARCHAR2(20), type VARCHAR2(10));
How do I make an option to pick type of chair, couch or table?