**Source URL:** https://general.veevavault.dev/vql/functions-options/find-scopes-distance/scope-all.md

# SCOPE ALL



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

## Syntax {#Syntax}

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

```

## Query Examples {#Query_Examples}

The following are examples of queries using `SCOPE ALL`.

### Query {#Query}

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

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

```


---

**Previous:** [DISTANCE](/vql/functions-options/find-scopes-distance/distance)  
**Next:** [SCOPE CONTENT](/vql/functions-options/find-scopes-distance/scope-content)