Sql queries
Products +-------------+---------+ | Column Name | Type | +-------------+---------+ | product_id | int | | low_fats | enum | | recyclable | enum | +-------------+---------+ product_id is the primary key (column with unique values) for this table. low_fats is an ENUM (category) of type ('Y', 'N') where 'Y' means this product is low fat and 'N' means it is not. recyclable is an ENUM (category) of types ('Y', 'N') where 'Y' means this product is recyclable and 'N' means it is not. creation Create table Products (product_id int, low_fats varchar(1) not null check( low_fats in('Y', 'N')) , recyclable varchar(1) not null check( recyclable in('Y', 'N'))) insert into Products (product_id, low_fats, recyclable) values ('0', 'Y', 'N') insert into Products (product_id, low_fats, recyclable) values ('1', 'Y', 'Y') insert into Products...