Skip to content

Commit

Permalink
create index
Browse files Browse the repository at this point in the history
  • Loading branch information
nmakivchuk committed Oct 25, 2024
1 parent d2b96d4 commit 60dfaff
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion task.sql
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Write your SQL code for the database creation here. Good luck!
USE ShopDB;
USE ShopDB;

CREATE INDEX idx_customers_email ON Customers (Email);

CREATE INDEX idx_products_name ON Products (Name);

0 comments on commit 60dfaff

Please sign in to comment.