This commit is contained in:
@@ -1636,6 +1636,7 @@ namespace AyaNova.DataList
|
|||||||
WHERE ARRAY['green'::varchar(255)] <@ tags and array_length(tags,1) = 1
|
WHERE ARRAY['green'::varchar(255)] <@ tags and array_length(tags,1) = 1
|
||||||
|
|
||||||
Not equal: Not EXACTLY Equal (aside from order) All terms in search term array NOT present in All terms in db record. IOW if db record has all search terms but also one more tag then it's NOT equal, Order doesn't matter
|
Not equal: Not EXACTLY Equal (aside from order) All terms in search term array NOT present in All terms in db record. IOW if db record has all search terms but also one more tag then it's NOT equal, Order doesn't matter
|
||||||
|
Specifically exclude rows that exactly match all the search terms
|
||||||
WHERE NOT (ARRAY['green'::varchar(255)] <@ tags and array_length(tags,1) = 1)
|
WHERE NOT (ARRAY['green'::varchar(255)] <@ tags and array_length(tags,1) = 1)
|
||||||
|
|
||||||
NO value: Empty tag array in db record
|
NO value: Empty tag array in db record
|
||||||
|
|||||||
Reference in New Issue
Block a user