标签: mongodb mongo-shell
我有一个mongo数据库,在mongo shell中,当我运行“show collections”时,它返回集合名称中带点的集合,如
a.1 a.2 a.3
我如何在命令中引用它,如
db.a.1.find()
以上返回SyntaxError:missing;在陈述之前
答案 0 :(得分:3)
搞清楚。将它包装在[]中。基本的javascript知识。
db["a.1"].find()