美文网首页
mongo常用命令

mongo常用命令

作者: a风风a | 来源:发表于2021-02-19 17:27 被阅读0次

    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