This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table PRODUCT(maker text not null, | |
model numeric not null, | |
type text not null); | |
create table PC(model text not null, | |
speed numeric not null, | |
ram numeric not null, | |
hd numeric not null, | |
price numeric not null); | |
create table LAPTOP(model text not null, | |
speed numeric not null, |