This commit is contained in:
2021-09-02 18:25:11 +00:00
parent d066e67082
commit 87d60aae3f

View File

@@ -1636,7 +1636,8 @@ namespace AyaNova.DataList
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
WHERE NOT (ARRAY['green'::varchar(255)] <@ tags and array_length(tags,1) = 1)
Specifically exclude rows that exactly match all the search terms
WHERE NOT (ARRAY['green'::varchar(255)] <@ tags and array_length(tags,1) = 1)
NO value: Empty tag array in db record
db record tags has NO value