中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
云浮市| 郸城县| 湟源县| 安宁市| 中牟县| 天全县| 沂源县| 辽源市| 西和县| 皋兰县| 普陀区| 望城县| 阿拉善左旗| 拉萨市| 铜鼓县| 邯郸市| 隆回县| 宾川县| 崇礼县| 泌阳县| 祁连县| 无棣县| 金堂县| 通海县| 合水县| 保亭| 阳原县| 汉沽区| 上饶县| 舟山市| 铜山县| 浦江县| 大兴区| 柯坪县| 灵山县| 庐江县| 昌黎县| 平顶山市| 龙江县| 蒙自县| 康平县|