mongo #连接数据库
show databases; #显示库名
use 数据库; #使用相关数据库
show collections; #使用集合
db.集合名.find(); #查询数据
db.foo.find({'msg':'Hello 1'}).limit(10).sort({'Dt',-1); #根据条件检索10条记录,逆序
/*帮助信息*/
help
db.help();
db.集合名.help();
mongo #连接数据库
show databases; #显示库名
use 数据库; #使用相关数据库
show collections; #使用集合
db.集合名.find(); #查询数据
db.foo.find({'msg':'Hello 1'}).limit(10).sort({'Dt',-1); #根据条件检索10条记录,逆序
/*帮助信息*/
help
db.help();
db.集合名.help();
本文标题:mongo常用命令
本文链接:https://www.haomeiwen.com/subject/kubaxltx.html
网友评论