Ubuntu 21.10にMongoDbのテーブルを作成する方法

環境
Ubuntu 21.10
MongoDb5.0.4

操作方法
1.テーブルを作成します
> db.createCollection(“items");
{ “ok" : 1 }

2.データを挿入します
> db.items.insert( { name:"itemAa", price:33 } );
WriteResult({ “nInserted" : 1 })

> db.items.insert( { name:"itemBb", price:44 } );
WriteResult({ “nInserted" : 1 })

3.挿入データの確認

> db.items.find();
{ "_id" : ObjectId("61a2ef01169bc1ba5d8e3c68"), "name" : "itemAa", "price" : 33 }
{ "_id" : ObjectId("61a2ef19169bc1ba5d8e3c69"), "name" : "itemBb", "price" : 44 }

4.終了
> quit()

Ubuntu 21.10

Posted by arkgame