---
title: "Search Syntax"
slug: "search-syntax"
description: "Discover Prefix's log management, a unified platform for viewing and searching logs. Utilize powerful search capabilities with SQLite FtS5. "
updated: 2021-07-26T17:03:22Z
published: 2021-07-26T17:03:22Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stackify.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search Syntax

Prefix’s log management allows you to view and search across all of your logs in one place. Full text query is powered by SQLite FtS5 to create powerful searching capabilities. For more information, check out the [official SQLite site](https://sqlite.org/fts5.html#full_text_query_syntax).

## Tips for Searching Through Logs

### Strings

All alpha-numeric characters are supported as well as the underscore character `_` for searches. `“Order_number”`

Strings are identified by using double quotes `“`. To escape embedded double quote characters, escape by adding a second double quote character. `“Order_number ""1234""”`

### Phrases

Strings can be concatenated into phrases using the plus character +. `'"one two three"'` `'one + two + three'` `'"one two" + three'` `'one.two.three'`

### Booleans

Operators AND, OR, NOt are supported and case sensitive.

`&lt;query1&gt; NOT &lt;query2&gt;` `&lt;query1&gt; AND &lt;query2&gt;` `&lt;query1&gt; OR &lt;query2&gt;`
