elasticsearch/docs/reference/query-languages/esql/_snippets/functions/examples/term.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
439 B
Markdown
Raw Normal View History

% This is generated by ESQL's AbstractFunctionTestCase. Do no edit it. See ../README.md for how to regenerate it.
**Example**
```esql
FROM books
| WHERE TERM(author, "gabriel")
| KEEP book_no, title
| LIMIT 3
```
| book_no:keyword | title:text |
| --- | --- |
| 4814 | El Coronel No Tiene Quien Le Escriba / No One Writes to the Colonel (Spanish Edition) |
| 4917 | Autumn of the Patriarch |
| 6380 | La hojarasca (Spanish Edition) |