only for the grade
<html><head></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">create table product (
productid varchar (8),
name varchar (50),
price numeric (12,2),
type varchar(2),
primary key (productid),
check (type in ('Tools', 'Kitchen', 'Sales', 'Other')));
INSERT INTO section VALUES('12','Hammer','44.99','Tool');</pre></body></html>