mongodb数据清理命令
程序员文章站
2022-11-28 17:31:17
#启动mongo命令/data/liudi/mongodb/bin/mongo --port 27010 #显示数据库show dbs; #使用tps_live数据库use tps_live; #显示对象show tables; #删除liveVo对象集中的数据db.liveVo.remove({} ......
#启动mongo命令
/data/liudi/mongodb/bin/mongo --port 27010
#显示数据库
show dbs;
#使用tps_live数据库
use tps_live;
#显示对象
show tables;
#删除liveVo对象集中的数据
db.liveVo.remove({});