原创

mongodb数据库查询

温馨提示:
本文最后更新于 2017年02月20日,已超过 2,992 天没有更新。若文章内的图片失效(无法正常加载),请留言反馈或直接联系我
show dbs;
1000e_db_demo      0.129GB
1000e_db_prod      0.000GB
1000e_db_product   1.232GB
1000e_db_test      0.741GB
local             33.283GB


db.getName();       ---显示当前使用的数据库名称


db.stats();         ---显示当前数据库状态,包含数据库名称,集合个数,当前数据库大小 ...


show collections;   ---查看数据库中有那些个集合(表)


db.fs.files.find(); --- 观察fs.files的情况


db.e1000.files.find().pretty();  --- 观察app文件上传的相关信息 -> pretty():格式化输出


db.e1000.files.find().sort({'uploadDate':-1}).limit(1).pretty();  -- “-1”:降  “1”:升'


db.fs.chunks.find(); --- 观察fs.chunks的情况
正文到此结束
本文目录