Skip to content

Commit

Permalink
Implement create_indexes task
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmytry-S committed Feb 12, 2024
1 parent d2b96d4 commit 17a2e8f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion task.sql
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# Write your SQL code for the database creation here. Good luck!
USE ShopDB;
USE ShopDB;
CREATE INDEX Email ON Customers (Email);
CREATE INDEX Name ON Products (Name);

0 comments on commit 17a2e8f

Please sign in to comment.