INSERT INTO customers(customer_id, customer_name, address)
VALUES('C1507', 'MAFON BETILA', 'Bamenda'),
('C1517', 'KIMBONG BLESS', 'Kumba'),
('C1523', 'MOYANCHO MALVIN', 'Yaounde'),
('C1525', 'NDINTECK ALEX', 'Bamenda'),
('C1557', 'DINSE JOSHUA', 'Buea');
INSERT INTO products(product_id, product_name, unit_price)
VALUES ('PR01', 'White Rice', '21000'),
('PR02', 'ELENA Tomatoe', '5400'),
('PR03', 'Mayor-Vegetable oil', '18000'),
('PR04', 'SuperJus', '3000'),
('PR05', 'NIPE-Sardine', '2500');
INSERT INTO orders(customer_id, product_id, order_id, quantity, order_date)
VALUES( 'C1507', 'PR02', 'CR01', '10', '2020-12-14'),
('C1507', 'PR05', 'CR01', '5', '2020-12-14'),
( 'C1507', 'PR01', 'CR01', '10', '2020-12-14'),
( 'C1523', 'PR05', 'CR02', '8', '2020-12-16'),
('C1523', 'PR03', 'CR03', '4', '2020-12-20');