我想使用3或condition顺序编写一些复杂的where
。
SQL where
示例:
where
(c1 = 'a' or c2 = 'b' or c3 = 'c' or c4 = 'd')
and (c5 = 'e' or c6 = 'f' or c7 = 'g' or c8 = 'h')
and (c9 = 'i' or c10 = 'j')
在续集中,我写了这样的话:
where: {
$and: {
$or: [{ c1: 'a' }, { c2: 'b' }, { c3: 'c' }, { c4: 'd' }]
},
$or: [{ c5: 'e' }, { c6: 'f' }, { c7: 'g' }, { c8: 'h' }]
}
但是如何添加该对象:$or: [{ c9: 'i' }, { c10: 'j' }]
?
P.S。不用担心我使用Op
的项目。
答案 0 :(得分:1)
您需要外部$and
属性和内部部分的条件。
where: {
$and: [
{
$or: [
{ c1: 'a' }, { c2: 'b' }, { c3: 'c' }, { c4: 'd' }
]
},
{
$or: [
{ c5: 'e' }, { c6: 'f' }, { c7: 'g' }, { c8: 'h' }
]
},
{
$or: [
{ c9: 'i' }, { c10: 'j' }
]
}
]
}