From 0babf2b3ee74dff03a1fefcf7717736b21d5459b Mon Sep 17 00:00:00 2001 From: Kshitij Date: Sat, 9 Nov 2024 22:29:36 +0530 Subject: [PATCH] Appended 1 to database name to avoid conflits with other store databases. --- Practical/Practical Exam/SQL/S4 - SQL Queries.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Practical/Practical Exam/SQL/S4 - SQL Queries.md b/Practical/Practical Exam/SQL/S4 - SQL Queries.md index d639d2f..1addf5f 100644 --- a/Practical/Practical Exam/SQL/S4 - SQL Queries.md +++ b/Practical/Practical Exam/SQL/S4 - SQL Queries.md @@ -21,8 +21,8 @@ name. ## Creating the database ```sql -CREATE DATABASE Store; -USE Store; +CREATE DATABASE Store1; +USE Store1; ```