Skip to content

SCOPE ALL

In v8.0+, use SCOPE ALL with FIND to search document fields and within document content.

SELECT {fields}
FROM documents
FIND ('{search phrase}' SCOPE ALL)

The following are examples of queries using SCOPE ALL.

The example query below searches document content and all queryable fields.

SELECT id, name__v
FROM documents
FIND ('insulin' SCOPE ALL)