W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
解釋:數(shù)據(jù)庫(kù)查詢指令,用于連接多個(gè)篩選條件,各條件之間滿足邏輯"與"的關(guān)系,該指令可接受數(shù)組類型的參數(shù)。
例如,篩選出數(shù)據(jù)表中 age 大于 25 且小于 50 的用戶
代碼示例
級(jí)聯(lián)查詢寫(xiě)法:
swan.cloud.init({
env: 'envId'
});
const db = swan.cloud.database();
db.collection('users')
.where({
age: _.gt(25).and(_.lt(50))
})
前置查詢寫(xiě)法:
swan.cloud.init({
env: 'envId'
});
const db = swan.cloud.database();
db.collection('users')
.where({
age: _.and(_.gt(25), _.lt(50)) // and指令同時(shí)支持傳入數(shù)組,_.and([_.gt(25), _.lt(50)])
})
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: