91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

mongodb怎么獲取表中記錄數

小億
125
2023-11-16 11:09:27
欄目: 云計算

在MongoDB中,獲取集合中的記錄數可以使用countDocuments()方法。該方法返回一個promise,可以使用then()方法來獲取結果。

以下是一個示例:

const MongoClient = require('mongodb').MongoClient;
const uri = "mongodb+srv://<username>:<password>@<cluster-url>/<database>?retryWrites=true&w=majority";

MongoClient.connect(uri, function(err, client) {
  if(err) {
    console.log('Error occurred while connecting to MongoDB Atlas...\n',err);
  }
  console.log('Connected to MongoDB Atlas...');
  
  const collection = client.db("<database>").collection("<collection>");

  collection.countDocuments()
    .then(count => {
      console.log("Number of documents in the collection: ", count);
    })
    .catch(err => {
      console.log("Error occurred while counting documents:\n", err);
    })
    .finally(() => {
      client.close();
    });
});

請注意,<username><password><cluster-url><database><collection>都需要替換為適當的值。

0
青田县| 霞浦县| 余姚市| 天祝| 沾益县| 亳州市| 瓦房店市| 苏尼特左旗| 河津市| 徐水县| 乌鲁木齐县| 类乌齐县| 奉新县| 沧源| 徐闻县| 繁峙县| 彰化市| 万年县| 康马县| 靖安县| 西峡县| 望都县| 玛曲县| 颍上县| 盐山县| 华容县| 天镇县| 潞西市| 新巴尔虎左旗| 黔南| 南通市| 龙陵县| 塔河县| 孟村| 府谷县| 灵宝市| 八宿县| 溆浦县| 邹平县| 张家界市| 鞍山市|