本文以DMS(Data Management Service)為例,介紹如何在ApsaraDB for MongoDB中建立資料庫和集合并寫入資料。
前提條件
操作步驟
- 在Data Management控制台的SQL Console頁面中,建立test資料庫,命令如下:
use test
返回結果如下: - 成功建立資料庫後,單擊執行結果中的資料庫名,跳轉至目標資料庫環境。
- 在test資料庫中建立mongo集合,命令如下:
db.createCollection("mongo")
返回結果中
ok
取值為1.0
時,表示建立成功,其他取值表示建立失敗。 - 寫入兩組資料
{"name": "test"}
和{"count": "10"}
至mongo集合,命令如下:db.runCommand({insert: "mongo", documents: [{"name": "test"},{"count": "10"}]})
- 查詢mongo集合中的資料,命令如下:
db.getCollection("mongo").find({})
返回結果如下:[ { '_id': ObjectId("63bd29f8e52fddefeb59****"), 'name': "test" }, { '_id': ObjectId("63bd29f8e52fddefeb59****"), 'count': "10" } ]