Python MongoDB แสดงรายชื่อตาราง ชื่อ collection บทความนี้สอนใช้คำสั่ง list_collection_names เพื่อแสดงรายชื่อ collection หรือตารางทั้งหมดใน Database ของ MongoDB ที่ต้องการ สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง Python MongoDB แสดงรายชื่อตาราง ชื่อ collection
from pymongo import MongoClient
conn = "mongodb://localhost:27017/"
client = MongoClient(conn)
db = client['local']
for table in db.list_collection_names():
print(table)
ผลลัพธ์
startup_log
Python MongoDB แสดงรายชื่อตาราง จากตัวอย่างแสดงรายชื่อตารางจากฐานข้อมูลชื่อ local ของ MongoDB โดยใช้คำสั่ง list_collection_names ร่วมกับ for เพื่อวนลูปและแสดงรายชื่อตาราง หรือ collections ออกสู่หน้าจอ ด้วยคำสั่ง print ภาษา Python