sudo apt-get install mongodb
mongo -version
service mongodb start
show dbs;
show collections;
use local;
db.createCollection('teacher');
db.teacher.insert({_id:1, sname:'zhangsan', age:20});
mongodb安装
最新推荐文章于 2025-05-15 14:55:08 发布
sudo apt-get install mongodb
mongo -version
service mongodb start
show dbs;
show collections;
use local;
db.createCollection('teacher');
db.teacher.insert({_id:1, sname:'zhangsan', age:20});
1256

被折叠的 条评论
为什么被折叠?