Solution: Create Indexes

Learn about the solution to the previous challenge.

We'll cover the following...

Solution

Below is the solution to this challenge:

Press + to interact
/* Implement here */
create unique index products_name_uidx on products(name);
insert into products(name, price) values ('The Godfather', 90.00);
...