-- List all rows and columns for the complete INVOICES table.
CREATE TABLE INVOICES (
INVOICES_NUM INT (5) PRIMARY KEY,
INVOICES_DATE DATE,
CUST_ID INT(3)
);
INSERT INTO INVOICES
VALUES
(14216, '2021-11-15', 125),
(14219, '2021-11-15', 227),
(14222, '2021-11-16', 294),
(14224, '2021-11-16', 182),
(14228, '2021-11-18', 435),
(14231, '2021-11-18', 125),
(14233, '2021-11-18', 435),
(14237, '2021-11-19', 616);
SELECT * FROM INVOICES
To embed this project on your website, copy the following code and paste it into your website's HTML: