标签: mongodb
在mongoDB中,我正在创建包含特殊名称的集合 对于前 -
> db.createCollection("collection-demo") { "ok" : 1 }
但是当我试图访问该集合时,它会给出错误
> db.collection-demo.find() 2015-07-09T14:44:56.603+0530 ReferenceError: demo is not defined
如何使用命令行访问此集合?