MongoDB เลือกฐานข้อมูล ด้วยคำสั่ง use บทความนี้สอนใช้คำสั่ง use เพื่อเลือกฐานข้อมูล โดยเป็นคำสั่งที่สำคัญเนื่องจากการที่จะ query ข้อมูลใน collection ได้ต้องเลือกฐานข้อมูลก่อน สามารถเขียนคำสั่งได้ดังนี้
ตัวอย่าง MongoDB เลือกฐานข้อมูล ด้วยคำสั่ง use
use local
'switched to db local'
db.startup_log.find()
ผลลัพธ์
{ _id: 'LAPTOP-S3QU8XXX-1658977610XXX',
hostname: 'LAPTOP-S3QU8XXX',
startTime: 2022-07-28T03:06:50.000Z,
...
...
maxBsonObjectSize: 16777216,
storageEngines: [ 'devnull', 'ephemeralForTest', 'wiredTiger' ] } }
MongoDB เลือกฐานข้อมูล จากตัวอย่างใช้คำสั่ง use local เพื่อเลือกฐานข้อมูลชื่อ local จากนั้นใช้คำสั่ง db.startup_log.find() เพื่อแสดงข้อมูลจาก collection ชื่อ startup_log ด้วยคำสั่ง find