From 151fab47d8280aed4a766dc43bf0b8a7ba46c287 Mon Sep 17 00:00:00 2001 From: Kshitij Date: Sun, 10 Nov 2024 11:29:54 +0530 Subject: [PATCH] Appended 1 to database name to avoid conflict with aggregation p.s. --- Practical/Practical Exam/MongoDB/M1 - Crud operations.md | 2 +- Practical/Practical Exam/MongoDB/M2 - Crud operations.md | 2 +- Practical/Practical Exam/MongoDB/M3 - Crud operations.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Practical/Practical Exam/MongoDB/M1 - Crud operations.md b/Practical/Practical Exam/MongoDB/M1 - Crud operations.md index 22087a8..ef6d92e 100644 --- a/Practical/Practical Exam/MongoDB/M1 - Crud operations.md +++ b/Practical/Practical Exam/MongoDB/M1 - Crud operations.md @@ -33,7 +33,7 @@ by 5000. ## Creating database & collection: ```json -use empDB +use empDB1 db.createCollection("Employee") ``` diff --git a/Practical/Practical Exam/MongoDB/M2 - Crud operations.md b/Practical/Practical Exam/MongoDB/M2 - Crud operations.md index b8aa7f9..bc3a24e 100644 --- a/Practical/Practical Exam/MongoDB/M2 - Crud operations.md +++ b/Practical/Practical Exam/MongoDB/M2 - Crud operations.md @@ -33,7 +33,7 @@ Company_name is "Infosys". ## Creating database & collection: ```json -use empDB +use empDB1 db.createCollection("Employee") ``` diff --git a/Practical/Practical Exam/MongoDB/M3 - Crud operations.md b/Practical/Practical Exam/MongoDB/M3 - Crud operations.md index 8f4852e..cc9022e 100644 --- a/Practical/Practical Exam/MongoDB/M3 - Crud operations.md +++ b/Practical/Practical Exam/MongoDB/M3 - Crud operations.md @@ -34,7 +34,7 @@ value "Pune" and the field Pin_code with the value "411001". ## Creating database & collection: ```json -use empDB +use empDB3 db.createCollection("Employee") ```