The Product table
More of the same:
create table product(
product_id bigint not null,
manufacturer varchar not null,
model_number varchar, -- Assigned by the manufacturer
description varchar not null,
price decimal(10, 2) not null,
primary key(product_id)
);
|