...

/

Solution: Create Indexes

Solution: Create Indexes

Learn about the solution to the previous challenge.

Solution

Below is the solution to this challenge:

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