Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
33 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,18 @@ | ||
| --- | ||
| title: "@@ operator" | ||
| title: "%% operator" | ||
| layout: en | ||
| --- | ||
|
|
||
| # `@@` operator | ||
| # `%%` operator | ||
|
|
||
| TODO | ||
| You can do full text search with one keyword by `%%` operator: | ||
|
|
||
| ```sql | ||
| SELECT * FROM memos WHERE content %% '全文検索'; | ||
| -- id | content | ||
| -- ----+--------------------------------------------------- | ||
| -- 2 | Groongaは日本語対応の高速な全文検索エンジンです。 | ||
| -- (1 行) | ||
| ``` | ||
|
|
||
| If you want to do full text search with multiple keywords or AND/OR search, use [`%%` operator](query.html). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters