From aad9443bebe31fb2830cfd9e9833656aa139f7a9 Mon Sep 17 00:00:00 2001 From: kirillpolozenko Date: Wed, 6 Mar 2024 18:04:01 +0200 Subject: [PATCH] Solution --- task.sql | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/task.sql b/task.sql index 0c5b574..3b77217 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 idx_Email ON Customers (Email); + +CREATE INDEX idx_Name ON Products (Name);