43. Create another table Day totals with two attributes date and total and insert rows into this Table from order table.
CREATE TABLE day_totals
(date varchar(20),
total int
);
CREATE TABLE day_totals
(date varchar(20),
total int
);