From 8595cd71d6aab4a8365770bb29f52be3141406a9 Mon Sep 17 00:00:00 2001 From: Volkov Date: Wed, 22 May 2024 14:09:16 +0300 Subject: [PATCH] sql script ready & tested --- task.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/task.sql b/task.sql index 0c5b574..659649e 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);