From 2a12c77eedc8bbca5d48bf679a52dc85378b5e63 Mon Sep 17 00:00:00 2001 From: Vicheslav Der Date: Fri, 13 Sep 2024 22:37:24 +0300 Subject: [PATCH] solution added --- task.sql | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/task.sql b/task.sql index 0c5b574..5de0290 100644 --- a/task.sql +++ b/task.sql @@ -1,2 +1,5 @@ -# Write your SQL code for the database creation here. Good luck! USE ShopDB; + +CREATE INDEX Email ON Customers (Email); + +CREATE INDEX Name ON Products (Name);