I'm trying to select documents from a Notes database for display in a view. Using
SELECT @All
shows all the documents, as it should; if I create a column showing the Form field, I get the document type shown in that column, also as it should. I can see that there are several documents with this field set to Task.
Now I wish to select all Task documents:
SELECT (Form = "Task")
The result set is empty, which is not quite what I'd expected, especially as the inverse statements
SELECT (Form != "Task")
and
SELECT (!(Form = "Task"))
indeed return all documents except for those of Task type.
What could be the reason for this?