-- Create the following tables in MySQL -- Products -- primary key -- name -- category -- sell by date -- sold or not -- moment of sale -- quantity -- weight Kg create table products(id int primary key auto_increment, name varchar(40), category enum('Baked Goods', 'Fruit and Veg', 'Dairy'), sell_by date, sold bool, moment_of_sale timestamp, quantity int, weight numeric(6,3)); select * from products; insert into products(name, category, sell_by, sold, moment_of_sale, quantity, weight) values ("Sack of Potatoes", "Fruit and Veg", "2016-10-14", true, "2015-11-01 10:23:45", 30, 10); -- --------------------------------------- -- Personnel -- primary key -- given name -- family name -- gender -- telephone number -- marital status -- age -- salary -- position -- date started -- --------------------------------------- create table personnel(id int primary key auto_increment, given_name varchar(50), family_name varchar(50), gend...