mongodb查詢記錄數(shù)的方法是什么

小億
304
2024-05-28 09:55:06
欄目: 云計(jì)算

要查詢 MongoDB 中的記錄數(shù),可以使用以下方法之一:

  1. 使用 count() 方法:
db.collectionName.count()
  1. 使用 countDocuments() 方法(推薦):
db.collectionName.countDocuments()

這兩種方法都可以用來獲取指定集合中的記錄數(shù)。請(qǐng)記住,MongoDB 從版本 4.0 開始,count() 方法已被棄用,建議使用 countDocuments() 方法。

0