কমান্ড লাইন দ্বারা আমার টেবিলের সাথে সংযোগ করার জন্য, আপনাকে db কমান্ড ব্যবহার করতে হবে
db.yourCollectionName.find();
ধরা যাক আমাদের কাছে কিছু সংগ্রহ সহ একটি ডাটাবেস "নমুনা" আছে। প্রথমে বর্তমান ডাটাবেস চেক করুন
> use sample; switched to db sample > db; Sample Now we have reached the database sample. The database “sample” is having the following collections: > show collections;
এটি নিম্নলিখিত আউটপুট তৈরি করবে
arraySizeErrorDemo basicInformationDemo copyThisCollectionToSampleDatabaseDemo deleteAllRecordsDemo deleteDocuments deleteDocumentsDemo deleteSomeInformation documentWithAParticularFieldValueDemo employee findListOfIdsDemo findSubstring getAllRecordsFromSourceCollectionDemo getElementWithMaxIdDemo internalArraySizeDemo largestDocumentDemo makingStudentInformationClone oppositeAddToSetDemo prettyDemo returnOnlyUniqueValuesDemo selectWhereInDemo sourceCollection studentInformation sumOfValueDemo sumTwoFieldsDemo truncateDemo updateInformation userInformation
এখানে একটি টেবিলের সাথে সংযোগ করার সঠিক উপায় অর্থাৎ সংগ্রহ। আপনাকে db কমান্ড ব্যবহার করতে হবে। নিম্নোক্ত প্রশ্নটি
> db.userInformation.find();
এটি নিম্নলিখিত আউটপুট তৈরি করবে
{ "_id" : ObjectId("5c6a765964f3d70fcc9147f5"), "Name" : "John", "Age" : 30, "isStudent" : false, "Subjects" : [ "Introduction to java", "Introduction to MongoDB" ] }