From 0ad540721e43a6e7af47599b12b9d1bae2dffa13 Mon Sep 17 00:00:00 2001 From: Kshitij Date: Fri, 8 Nov 2024 22:40:27 +0530 Subject: [PATCH] Appended 1 to database name to avoid conflits with other p.s. using same structure. --- Practical/Practical Exam/SQL/S1 - SQL Queries.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Practical/Practical Exam/SQL/S1 - SQL Queries.md b/Practical/Practical Exam/SQL/S1 - SQL Queries.md index 65e45a7..a1ba5b8 100644 --- a/Practical/Practical Exam/SQL/S1 - SQL Queries.md +++ b/Practical/Practical Exam/SQL/S1 - SQL Queries.md @@ -23,8 +23,8 @@ names,loan_no and loan amount. ## Creating the database ```sql -CREATE DATABASE Bank; -USE Bank; +CREATE DATABASE Bank1; +USE Bank1; ```