数据库update其中一条的方法?
朕只是想仅update符号条件的其中一条,于是我用了.orderBy(‘createTime’, ‘asc’).limit(1),但实际上,执行时还是不考虑limit(1),符合where的就全部更新了。
诸王有何妙计?请指教。
const update = await db.collection('support').where({
region: event.region
}).orderBy('createTime', 'asc').limit(1).update({
data: {
signedIn: true,
supportOpenId: thisOpenId
}
})