如何查找一个记录是否存在
- 需求的场景描述(希望解决的问题)
数据库记录数据如下:
记录集的名字为data1
_id:xxxxxx
a:20190601
b:20190602
c:20190603
怎么查询a是否存在?下面这样写正确吗?
db.collection(‘data1’).field({
[a]: true
}).where({
_id: ‘xxxxxx’
}).count()
数据库记录数据如下:
记录集的名字为data1
_id:xxxxxx
a:20190601
b:20190602
c:20190603
怎么查询a是否存在?下面这样写正确吗?
db.collection(‘data1’).field({
[a]: true
}).where({
_id: ‘xxxxxx’
}).count()