MongoDB查询NumberLong类型方式
问题:MongoDB根据某个Long类型ID查询数据查不出来
已有数据如下:
使用命令如下:
db.getCollection('point_membership_record_summary_2022').find({"membergloabid" : NumberLong(3535040584769077249)})
查询结果为空
解决办法:Long类型的需要在NumberLong的对象里加上双引号才能查出来。
修改后命令如下:
db.getCollection('point_membership_record_summary_2022').find({"membergloabid" : NumberLong("3535040584769077249")})
查询结果
文章目录
关闭