---
title: Phrase Prefix
---
## Basic Usage
Identifies documents containing a [phrase](/documentation/concepts/phrase) followed by a term prefix. The field must be indexed with a
[record](/documentation/indexing/record) of `position`.
```sql Function Syntax
SELECT description, rating, category
FROM mock_items
WHERE id @@@ paradedb.phrase_prefix('description', ARRAY['running', 'sh']);
```
```sql JSON Syntax
SELECT description, rating, category
FROM mock_items
WHERE id @@@
'{
    "phrase_prefix": {
        "field": "description",
        "phrases": ["running", "sh"]
    }
}'::jsonb;
```
  Specifies the field within the document to search for the term.
  An `ARRAY` of words that the search is looking to match, followed by a term
  prefix rather than a complete term.
  Limits the number of term variations that the prefix can expand to during the
  search. This helps in controlling the breadth of the search by setting a cap
  on how many different terms the prefix can match.