全部產品
Search
文件中心

:建立資料庫和集合并寫入資料

更新時間:Jun 19, 2024

本文以DMS(Data Management Service)為例,介紹如何在ApsaraDB for MongoDB中建立資料庫和集合并寫入資料。

前提條件

操作步驟

  1. Data Management控制台SQL Console頁面中,建立test資料庫,命令如下:
    use test
    返回結果如下:建立資料庫
  2. 成功建立資料庫後,單擊執行結果中的資料庫名,跳轉至目標資料庫環境。
  3. 在test資料庫中建立mongo集合,命令如下:
    db.createCollection("mongo")

    返回結果中ok取值為1.0時,表示建立成功,其他取值表示建立失敗。

  4. 寫入兩組資料{"name": "test"}{"count": "10"}至mongo集合,命令如下:
    db.runCommand({insert: "mongo", documents: [{"name": "test"},{"count": "10"}]})
  5. 查詢mongo集合中的資料,命令如下:
    db.getCollection("mongo").find({})
    返回結果如下:
    [
        {
            '_id': ObjectId("63bd29f8e52fddefeb59****"),
            'name': "test"
        },    {
            '_id': ObjectId("63bd29f8e52fddefeb59****"),
            'count': "10"
        }
    ]