MongoDB 插入数据可以指定类型吗?
比如我插入一个数据id为1, 我实际想要的类型是int,但是插入MongoDB后的数据类型却变成double。
db.student.insert({"id":1});
请问有什么好的解决方法吗?
zero之子
9 years, 5 months ago
比如我插入一个数据id为1, 我实际想要的类型是int,但是插入MongoDB后的数据类型却变成double。
db.student.insert({"id":1});
请问有什么好的解决方法吗?