CREATE TABLE todo_list (id INTEGER PRIMARY KEY, item TEXT, minutes INTEGER);
INSERT INTO todo_list VALUES (1, "Wash the dishes", 15);
INSERT INTO todo_list VALUES (2, "vacuuming", 20);
INSERT INTO todo_list VALUES (3, "Learn some stuff on KA", 30);
INSERT INTO todo_list  VALUES (4, "workout", 40);

SELECT SUM(minutes) FROM todo_list;

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: