Instruction
Here's the quiz question for you.
Exercise
A laboratory has the following table, which stores info on all the mixtures they've created:
CREATE TABLE mixture ( id integer primary key, name varchar UNIQUE, created date, ingredients text );
Your task is to:
- Quickly delete all the data from the table without deleting the table structure.
- Add an index named
created_indexon the column namedcreated.



