摘要: MongoDB的基本操作 一、常用操作 //查看所有数据库 show dbs; //选中库 use s10; //显示所有集合 show collections; //创建student集合 db.createCollection("student"); //删除tb_person集合 db.tb_ 阅读全文
posted @ 2021-05-23 23:10 想~(●—●)肥~ 阅读(95) 评论(0) 推荐(0) 编辑