< 1 min read
You can delete a table, or collection as it is called in MongoDB, by using the drop() method.
drop()
Хүснэгт устгах, эсвэл MongoDB-д нэрлэдэг цуглуулга устгах даа, drop() аргыг хэрэглэдэг.
Delete the “customers” collection:
“customers” цуглуулгыг устгах:
import pymongomyclient = pymongo.MongoClient("mongodb://localhost:27017/")mydb = myclient["mydatabase"]mycol = mydb["customers"]mycol.drop()
The drop() method returns true if the collection was dropped successfully, and false if the collection does not exist.
drop() аргаар цуглуулгыг амжилттай устгасан тохиолдолд үнэн (true), цуглуулга байхгүй бол худал (false) утгыг буцаана.
Powered by BetterDocs
You must be logged in to post a comment.