File: query_syntax.rst

package info (click to toggle)
groonga 15.0.4%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 163,080 kB
  • sloc: ansic: 770,564; cpp: 48,925; ruby: 40,447; javascript: 10,250; yacc: 7,045; sh: 5,602; python: 2,821; makefile: 1,672
file content (1003 lines) | stat: -rw-r--r-- 35,574 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
.. -*- rst -*-

.. groonga-command
.. database: reference_grn_expr_query_syntax

Query syntax
============

Query syntax is a syntax to specify search condition for common Web
search form. It is similar to the syntax of Google's search form. For
example, ``word1 word2`` means that groonga searches records that
contain both ``word1`` and ``word2``. ``word1 OR word2`` means that
groonga searches records that contain either ``word1`` or ``word2``.

Query syntax consists of :ref:`query-syntax-conditional-expression` ,
:ref:`query-syntax-combined-expression` and
:ref:`query-syntax-assignment-expression`. Normally
:ref:`query-syntax-assignment-expression` can be ignored. Because
:ref:`query-syntax-assignment-expression` is disabled in the
:ref:`select-query` option of :doc:`/reference/commands/select`. You
can use it by specifying ``ALLOW_UPDATE`` to the
:ref:`select-query-flags` option.

:ref:`query-syntax-conditional-expression` specifies an
condition. :ref:`query-syntax-combined-expression` consists of one or
more :ref:`query-syntax-conditional-expression`,
:ref:`query-syntax-combined-expression` or
:ref:`query-syntax-assignment-expression`. :ref:`query-syntax-assignment-expression`
can assigns a value to a column.

Sample data
-----------

Here are a schema definition and sample data to show usage.

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/setup.log
.. table_create Entries TABLE_PAT_KEY ShortText
.. column_create Entries content COLUMN_SCALAR Text
.. column_create Entries n_likes COLUMN_SCALAR UInt32
.. table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto
.. column_create Terms entries_key_index COLUMN_INDEX|WITH_POSITION Entries _key
.. column_create Terms entries_content_index COLUMN_INDEX|WITH_POSITION Entries content
.. load --table Entries
.. [
.. {"_key":    "The first post!",
..  "content": "Welcome! This is my first post!",
..  "n_likes": 5},
.. {"_key":    "Groonga",
..  "content": "I started to use Groonga. It's very fast!",
..  "n_likes": 10},
.. {"_key":    "Mroonga",
..  "content": "I also started to use Mroonga. It's also very fast! Really fast!",
..  "n_likes": 15},
.. {"_key":    "Good-bye Senna",
..  "content": "I migrated all Senna system!",
..  "n_likes": 3},
.. {"_key":    "Good-bye Tritonn",
..  "content": "I also migrated all Tritonn system!",
..  "n_likes": 3}
.. ]

There is a table, ``Entries``, for blog entries. An entry has title,
content and the number of likes for the entry. Title is key of
``Entries``. Content is value of ``Entries.content`` column. The
number of likes is value of ``Entries.n_likes`` column.

``Entries._key`` column and ``Entries.content`` column are indexed
using ``TokenBigram`` tokenizer. So both ``Entries._key`` and
``Entries.content`` are fulltext search ready.

OK. The schema and data for examples are ready.

Escape
------

There are special characters in query syntax. To use a special
character as itself, it should be escaped by prepending ``\``. For
example, ``"`` is a special character. It is escaped as ``\"``.

Here is a special character list:

* ``[space]`` (escaped as ``[backslash][space]``) (You should
  substitute ``[space]`` with a white space character that is 0x20
  in ASCII and ``[backslash]`` with ``\\``.)
* ``"`` (escaped as ``\"``)
* ``(`` (escaped as ``\(``)
* ``)`` (escaped as ``\)``)
* ``\`` (escaped as ``\\``)

You can use quote instead of escape special characters except ``\``
(backslash). You need to use backslash for escaping backslash like
``\\`` in quote.

Quote syntax is ``"..."``. You need escape ``"`` as
``\"`` in ``"..."`` quote syntax. For example, ``You say "Hello Alice!"`` can be
quoted ``"You say \"Hello Alice!\""``.

In addition ``'...'`` isn't  available in query syntax.

.. note::

   There is an important point which you have to care. The ``\``
   (backslash) character is interpreted by command line shell. So if
   you want to search ``(`` itself for example, you need to escape
   twice (``\\(``) in command line shell.  The command line shell
   interprets ``\\(`` as ``\(``, then pass such a literal to
   Groonga. Groonga regards ``\(`` as ``(``, then search ``(`` itself
   from database. If you can't do intended search by Groonga, confirm
   whether special character is escaped properly.

.. _query-syntax-conditional-expression:

Conditional expression
----------------------

Here is available conditional expression list.

.. _query-syntax-full-text-search-condition:

Full text search condition
^^^^^^^^^^^^^^^^^^^^^^^^^^

Its syntax is ``keyword``.

``Full text search condition`` specifies a full text search condition
against the default match columns. Match columns are full text search
target columns.

You should specify the default match columns for full text
search. They can be specified by ``--match_columns`` option of
:doc:`/reference/commands/select`. If you don't specify the default match
columns, this conditional expression fails.

This conditional expression does full text search with
``keyword``. ``keyword`` should not contain any spaces. If ``keyword``
contains a space such as ``search keyword``, it means two full text
search conditions; ``search`` and ``keyword``. If you want to
specifies a keyword that contains one or more spaces, you can use
``phrase search condition`` that is described below.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_full_text_search.log
.. select Entries --match_columns content --query fast

The expression matches records that contain a word ``fast`` in
``content`` column value.

``content`` column is the default match column.

.. _query-syntax-phrase-search-condition:

Phrase search condition
^^^^^^^^^^^^^^^^^^^^^^^

Its syntax is ``"search keyword"``.

``Phrase search condition`` specifies a phrase search condition
against the default match columns.

You should specify the default match columns for full text
search. They can be specified by ``--match_columns`` option of
:doc:`/reference/commands/select`. If you don't specify the default match
columns, this conditional expression fails.

This conditional expression does phrase search with ``search
keyword``. Phrase search searches records that contain ``search`` and
``keyword`` and those terms are appeared in the same order and
adjacent. Thus, ``Put a search keyword in the form`` is matched but
``Search by the keyword`` and ``There is a keyword. Search by it!``
aren't matched.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_phrase_search.log
.. select Entries --match_columns content --query '"I started"'

The expression matches records that contain a phrase ``I started`` in
``content`` column value. ``I also started`` isn't matched because
``I`` and ``started`` aren't adjacent.

``content`` column is the default match column.

.. _query-syntax-full-text-search-condition-with-explicit-match-column:

Full text search condition (with explicit match column)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Its syntax is ``column:@keyword``.

It's similar to ``full text search condition`` but it doesn't require
the default match columns. You need to specify match column for the
full text search condition by ``column:`` instead of
``--match_columns`` option of :doc:`/reference/commands/select`.

This condtional expression is useful when you want to use two or more
full text search against different columns. The default match columns
specified by ``--match_columns`` option can't be specified multiple
times. You need to specify the second match column by this conditional
expression.

The different between ``full text search condition`` and ``full text
search condition (with explicit match column)`` is whether advanced
match columns are supported or not. ``Full text search condition``
supports advanced match columns but ``full text search condition (with
explicit match column)`` isn't supported. Advanced match columns has
the following features:

* Weight is supported.
* Using multiple columns are supported.
* Using index column as a match column is supported.

See description of ``--match_columns`` option of
:doc:`/reference/commands/select` about them.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_full_text_search_with_explicit_match_column.log
.. select Entries --query content:@fast

The expression matches records that contain a word ``fast`` in
``content`` column value.

Phrase search condition (with explicit match column)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Its syntax is ``column:@"search keyword"``.

It's similar to ``phrase search condition`` but it doesn't require the
default match columns. You need to specify match column for the phrase
search condition by ``column:`` instead of ``--match_columns`` option
of :doc:`/reference/commands/select`.

The different between ``phrase search condition`` and ``phrase search
condition (with explicit match column)`` is similar to between ``full
text search condition`` and ``full text search condition (with
explicit match column)``. ``Phrase search condition`` supports
advanced match columns but ``phrase search condition (with explicit
match column)`` isn't supported. See description of ``full text search
condition (with explicit match column)`` about advanced match columns.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_phrase_search_with_explicit_match_column.log
.. select Entries --query 'content:@"I started"'

The expression matches records that contain a phrase ``I started`` in
``content`` column value. ``I also started`` isn't matched because
``I`` and ``started`` aren't adjacent.

.. _query-syntax-prefix-search-condition:

Prefix search condition
^^^^^^^^^^^^^^^^^^^^^^^

Its syntax is ``column:^value`` or ``value*``.

This conditional expression does prefix search with ``value``. Prefix
search searches records that contain a word that starts with ``value``.

You can use fast prefix search against a column. The column must be
indexed and index table must be patricia trie table
(``TABLE_PAT_KEY``) or double array trie table
(``TABLE_DAT_KEY``). You can also use fast prefix search against
``_key`` pseudo column of patricia trie table or double array trie
table. You don't need to index ``_key``.

Prefix search can be used with other table types but it causes all
records scan. It's not problem for small records but it spends more
time for large records.

It doesn't require the default match columns such as ``full text
search condition`` and ``phrase search condition``.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_prefix_search.log
.. select Entries --query '_key:^Goo'

The expression matches records that contain a word that starts with
``Goo`` in ``_key`` pseudo column value. ``Good-bye Senna`` and
``Good-bye Tritonn`` are matched with the expression.

.. _query-syntax-suffix-search-condition:

Suffix search condition
^^^^^^^^^^^^^^^^^^^^^^^

Its syntax is ``column:$value``.

This conditional expression does suffix search with ``value``. Suffix
search searches records that contain a word that ends with ``value``.

You can use fast suffix search against a column. The column must be
indexed and index table must be patricia trie table
(``TABLE_PAT_KEY``) with ``KEY_WITH_SIS`` flag. You can also use fast
suffix search against ``_key`` pseudo column of patricia trie table
(``TABLE_PAT_KEY``) with ``KEY_WITH_SIS`` flag. You don't need to
index ``_key``. We recommended that you use index column based fast
suffix search instead of ``_key`` based fast suffix search. ``_key``
based fast suffix search returns automatically registered
substrings. (TODO: write document about suffix search and link to it
from here.)

.. note::

   Fast suffix search can be used only for non-ASCII characters such
   as hiragana in Japanese. You cannot use fast suffix search for
   ASCII character.

Suffix search can be used with other table types or patricia trie
table without ``KEY_WITH_SIS`` flag but it causes all records
scan. It's not problem for small records but it spends more time for
large records.

It doesn't require the default match columns such as ``full text
search condition`` and ``phrase search condition``.

Here is a simple example. It uses fast suffix search for hiragana in
Japanese that is one of non-ASCII characters.

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_suffix_search.log
.. table_create Titles TABLE_NO_KEY
.. column_create Titles content COLUMN_SCALAR ShortText
.. table_create SuffixSearchTerms TABLE_PAT_KEY|KEY_WITH_SIS ShortText
.. column_create SuffixSearchTerms index COLUMN_INDEX Titles content
.. load --table Titles
.. [
.. {"content": "ぐるんが"},
.. {"content": "むるんが"},
.. {"content": "せな"},
.. {"content": "とりとん"}
.. ]
.. select Titles --query 'content:$んが'

The expression matches records that have value that ends with ``んが``
in ``content`` column value. ``ぐるんが`` and ``むるんが`` are matched
with the expression.

.. _query-syntax-near-search-condition:

Near search condition
^^^^^^^^^^^^^^^^^^^^^

Its syntax is ``*N"token1 token2 ..."``.

This conditional expression does near search with ``token1``,
``token2`` and ``...``. Near search searches records that contain the
all specified tokens and there are at most 10 tokens between them. For
example, ``*N"a b c"`` matches ``a 1 2 3 4 5 b 6 7 8 9 10 c`` but
doesn't match ``a 1 2 3 4 5 b 6 7 8 9 10 11 c``:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/near_search_search.log
.. table_create NearTokens TABLE_NO_KEY
.. column_create NearTokens content COLUMN_SCALAR ShortText
.. table_create NearTokenTerms TABLE_PAT_KEY ShortText \
..   --default_tokenizer TokenNgram \
..   --normalizer NormalizerNFKC130
.. column_create NearTokenTerms index COLUMN_INDEX|WITH_POSITION \
..   NearTokens content
.. load --table NearTokens
.. [
.. {"content": "a 1 2 3 4 5 b 6 7 8 9 10 c"},
.. {"content": "a 1 2 3 4 5 b 6 7 8 9 10 11 c"},
.. {"content": "a 1 2 3 4 5 b 6 7 8 9 10 11 12 c"}
.. ]
.. select NearTokens --match_columns content --query '*N"a b c"'

Note that you must specify ``WITH_POSITION`` to an index column that
is used for near search. If you don't specify ``WITH_POSITION``, near
search can't count distance correctly.

You can customize the max interval of the given tokens (``10`` by
default) by specifying a number after ``*N``. Here is an example that
uses ``2`` as the max interval of the given tokens::

    *N2"..."

Here is an example to customize the max interval of the given tokens:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/near_search_max_interval.log
.. select NearTokens --match_columns content --query '*N11"a b c"'

To be precious, you can specify a word instead of a token for near
search. Because the passed text is tokenized before near search. A
word consists of one or more tokens. If you specify a word, it may not
work as you expected. For example, ``*N"a1b2c3d"`` matches both ``a 1
b 2 c 3 d`` and ``a b c d 1 2 3``:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/near_search_word.log
.. load --table NearTokens
.. [
.. {"content": "a 1 b 2 c 3 d"},
.. {"content": "a b c d 1 2 3"}
.. ]
.. select NearTokens --match_columns content --query '*N"a1b2c3d"'

Because ``*N"a1b2c3d"`` equals to ``*N"a 1 b 2 c 3 d"``.

If you want to specify words,
:ref:`query-syntax-near-phrase-search-condition` is what you want.

.. versionadded:: 12.0.1
   The max intervals of each token.

You can specify the max intervals of each token. The default is no
limit. It means that all intervals of each token are valid as long as
the max interval is satisfied.

Here is an example that use ``2`` for the max interval of the first
interval and ``4`` for the max interval of the second interval::

    *N10,2|4"a b c"

``10`` is the max interval.

``|`` is the separator of the max intervals of each token.

This matches ``a x b x x x c``. But this doesn't match ``a x x b c``,
``a b x x x x c`` and so on because the former has ``3`` interval for
the first interval that is larger than ``2`` and the latter has ``5``
interval for the second interval that is later than ``4``.

Here is an example that specifies the max intervals of each token:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/near_search_max_element_intervals.log
.. select NearTokens --match_columns content --query '*N11,5|5"a b c"'
.. select NearTokens --match_columns content --query '*N11,5|6"a b c"'

You can omit one or more intervals. Omitted intervals are treated as
``-1``. It means that ``*N11,5`` equals ``*N11,5|-1``. ``-1`` means
that no limit.

Here is an example that omits an interval:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/near_search_max_element_intervals_omit.log
.. select NearTokens --match_columns content --query '*N11,5"a b c"'
.. select NearTokens --match_columns content --query '*N11,5|-1"a b c"'

You can specify extra intervals. They are just ignored:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/near_search_max_element_intervals_extra.log
.. select NearTokens --match_columns content --query '*N11,5|5|1|1|1"a b c"'
.. select NearTokens --match_columns content --query '*N11,5|5"a b c"'

.. _query-syntax-near-phrase-search-condition:

Near phrase search condition
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Its syntax is ``*NP"phrase1 phrase2 ..."``.

This conditional expression does near phrase search with ``phrase1``,
``phrase2`` and ``...``. Near phrase search searches records that
contain the all specified phrases and there are at most 10 tokens
between them. For example, ``*NP"a1b2c3d"`` matches ``a 1 b 2 c 3 d``
but doesn't match ``a b c d 1 2 3``. Because the latter uses different
order:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/near_phrase_search_search.log
.. select NearTokens --match_columns content --query '*NP"a1b2c3d"'

You can use a phrase that includes spaces by quoting such as
``*NP"\"groonga mroonga\" pgroonga"``. Note that you need to escape
``\"`` in command syntax such as ``*NP"\\\"groonga mroonga\\\"
pgroonga"``. This query matches ``groonga mroonga pgroonga`` but
doesn't match ``groonga pgroonga mroonga`` because ``mroonga`` isn't
right after ``groonga``:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/near_search_word.log
.. load --table NearTokens
.. [
.. {"content": "groonga mroonga rroonga pgroonga"},
.. {"content": "groonga rroonga pgroonga mroonga"}
.. ]
.. select NearTokens \
..   --match_columns content \
..   --query '*NP"\\\"groonga mroonga\\\" pgroonga"'

You can customize the max interval of the given phrases (``10`` by
default) by specifying a number after ``*NP``. Here is an example that
uses ``2`` as the max interval of the given phrases::

    *NP2"..."

Here is an example to customize the max interval of the given phrases:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/near_phrase_search_max_interval.log
.. select NearTokens --match_columns content --query '*NP1"groonga pgroonga"'

You can use additional interval only for the last phrase. It means
that you can accept more distance only between the second to last
phrase and the last phrase. This is useful for implementing a near
phrase search in the same sentence. If you specify ``.`` (sentence end
phrase) as the last phrase and specify ``-1`` as the additional last
interval, the other specified phrases must be appeared before
``.``. You must append ``$`` to the last phrase like ``.$``.

Here is an example that uses ``-1`` as the additional last interval of
the given phrases::

    *NP10,-1"a b .$"

Here is an example to customize the additional last interval of the
given phrases:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/near_phrase_search_additional_last_interval_negative.log
.. load --table NearTokens
.. [
.. {"content": "x 1 y 2 3 4 . x 1 2 y 3 z 4 5 6 7 ."},
.. {"content": "x 1 2 y 3 4 . x 1 2 y 3 z 4 5 6 7 ."},
.. {"content": "x 1 2 3 y 4 . x 1 y 2 z 3 4 5 6 7 ."},
.. ]
.. select NearTokens --match_columns content --query '*NP2,-1"x y .$"'

You can also use positive number for the additional last interval. If
you specify positive number as the additional last interval, all of
the following conditions must be satisfied:

1. The interval between the first phrase and the second to last
   phrase is less than or equals to ``the max interval``.

2. The interval between the first phrase and the last phrase is less
   than or equals to ``the max interval`` + ``the additional last
   interval``.

If you specify negative number as the additional last interval, the
second condition isn't required. Appearing the last phrase is just
needed.

Here is an example to use positive number as the additional last interval:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/near_phrase_search_additional_last_interval_positive.log
.. select NearTokens --match_columns content --query '*NP2,4"x y .$"'

.. versionadded:: 12.0.1
   The max intervals of each phrase.

You can also specify the max intervals of each phrase like
:ref:`query-syntax-near-search-condition`.

Here is an example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/near_phrase_search_max_element_intervals.log
.. select NearTokens --match_columns content --query '*NP11,0,5|5"a b c"'
.. select NearTokens --match_columns content --query '*NP11,0,5|6"a b c"'

.. _query-syntax-near-phrase-product-search-condition:

Near phrase product search condition
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. versionadded:: 11.1.1

Its syntax is ``*NPP"(phrase1_1 phrase1_2 ...) (phrase2_1 phrase2_2
...) ..."``.

This conditional expression does multiple
:ref:`query-syntax-near-phrase-search-condition`. Phrases for each
:ref:`query-syntax-near-phrase-search-condition` are computed as
product of ``{phrase1_1, phrase1_2, ...}``, ``{phrase2_1, phrase2_2,
...}`` and ``...``. For example, ``*NPP"(a b c) (d e)"`` uses the
following phrases for near phrase searches:

* ``a d``
* ``a e``
* ``b d``
* ``b e``
* ``c d``
* ``c e``

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/near_phrase_product_search_simple.log
.. select NearTokens --match_columns content --query '*NPP"(a x) (b y)"'

You can use the all features of
:ref:`query-syntax-near-phrase-search-condition` such as the max
interval, ``$`` for the last phrase and the additional last
interval.

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/near_phrase_product_search_options.log
.. select NearTokens --match_columns content --query '*NPP2,-1"(a x) (b c y) (d$ .$)"'

.. versionadded:: 12.0.1
   The max intervals of each phrase.

You can also specify the max intervals of each phrase like
:ref:`query-syntax-near-search-condition`.

Here is an example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/near_phrase_product_search_max_element_intervals.log
.. select NearTokens --match_columns content --query '*NPP11,0,5|5"(a x) (b y) (c z)"'
.. select NearTokens --match_columns content --query '*NPP11,0,5|6"(a x) (b y) (c z)"'

This is more effective than multiple
:ref:`query-syntax-near-phrase-search-condition` .

.. _query-syntax-ordered-near-phrase-search-condition:

Ordered near phrase search condition
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. versionadded:: 11.0.9

It's syntax is ``*ONP"phrase1 phrase2 ..."``

This conditional expression does ordered near phrase search with
``phrase1``, ``phrase2`` and ``...``. Ordered near phrase search is
similar to :ref:`query-syntax-near-phrase-search-condition` but
ordered near phrase search checks phrases order. For example,
``*ONP"groonga mroonga pgroonga"`` matches ``groonga mroonga rroonga
pgroonga`` but doesn't match ``groonga rroonga pgroonga
mroonga``. Because the latter uses different order:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/ordered_near_phrase_search_search.log
.. select NearTokens \
..   --match_columns content \
..   --query '*ONP"groonga mroonga pgroonga"'

You can use the all features of
:ref:`query-syntax-near-phrase-search-condition` such as the max
interval and the additional last interval. But you don't need to
specify ``$`` for the last phrase because the last phrase in query is
the last phrase.

.. versionadded:: 12.0.1
   The max intervals of each phrase.

You can also specify the max intervals of each phrase like
:ref:`query-syntax-near-search-condition`.

.. _query-syntax-ordered-near-phrase-product-search-condition:

Ordered near phrase product search condition
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. versionadded:: 11.1.1

Its syntax is ``*ONPP"(phrase1_1 phrase1_2 ...) (phrase2_1 phrase2_2
...) ..."``.

This conditional expression does ordered near phrase product
search. Ordered near phrase product search is similar to
:ref:`query-syntax-near-phrase-product-search-condition` but ordered
near phrase product search checks phrases order like
:ref:`query-syntax-ordered-near-phrase-search-condition`. For example,
``*ONPP"(a b c) (d e)"`` matches ``a 1 d`` but doesn't match ``d 1
a``. Because the latter uses different order.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/ordered_near_phrase_product_search_simple.log
.. select NearTokens \
..   --match_columns content \
..   --query '*ONPP"(a x) (b y)"'

You can use the all features of
:ref:`query-syntax-near-phrase-search-condition` such as the max
interval and the additional last interval. But you don't need to
specify ``$`` for the last phrase because the last phrase in query is
the last phrase.

.. versionadded:: 12.0.1
   The max intervals of each phrase.

You can also specify the max intervals of each phrase like
:ref:`query-syntax-near-search-condition`.

.. _query-syntax-similar-search-condition:

Similar search condition
^^^^^^^^^^^^^^^^^^^^^^^^

TODO

.. _query-syntax-equal-condition:

Equal condition
^^^^^^^^^^^^^^^

Its syntax is ``column:value``.

It matches records that ``column`` value is equal to ``value``.

It doesn't require the default match columns such as ``full text
search condition`` and ``phrase search condition``.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_equal.log
.. select Entries --query _key:Groonga

The expression matches records that ``_key`` column value is
equal to ``Groonga``.

.. _query-syntax-not-equal-condition:

Not equal condition
^^^^^^^^^^^^^^^^^^^

Its syntax is ``column:!value``.

It matches records that ``column`` value isn't equal to ``value``.

It doesn't require the default match columns such as ``full text
search condition`` and ``phrase search condition``.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_not_equal.log
.. select Entries --query _key:!Groonga

The expression matches records that ``_key`` column value is not equal
to ``Groonga``.

.. _query-syntax-less-than-condition:

Less than condition
^^^^^^^^^^^^^^^^^^^

Its syntax is ``column:<value``.

It matches records that ``column`` value is less than ``value``.

If ``column`` type is numerical type such as ``Int32``, ``column``
value and ``value`` are compared as number. If ``column`` type is text
type such as ``ShortText``, ``column`` value and ``value`` are
compared as bit sequence.

It doesn't require the default match columns such as ``full text
search condition`` and ``phrase search condition``.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_less_than.log
.. select Entries --query n_likes:<10

The expression matches records that ``n_likes`` column value is less
than ``10``.

.. _query-syntax-greater-than-condition:

Greater than condition
^^^^^^^^^^^^^^^^^^^^^^

Its syntax is ``column:>value``.

It matches records that ``column`` value is greater than ``value``.

If ``column`` type is numerical type such as ``Int32``, ``column``
value and ``value`` are compared as number. If ``column`` type is text
type such as ``ShortText``, ``column`` value and ``value`` are
compared as bit sequence.

It doesn't require the default match columns such as ``full text
search condition`` and ``phrase search condition``.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_greater_than.log
.. select Entries --query n_likes:>10

The expression matches records that ``n_likes`` column value is greater
than ``10``.

.. _query-syntax-less-than-or-equal-condition:

Less than or equal to condition
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Its syntax is ``column:<=value``.

It matches records that ``column`` value is less than or equal to
``value``.

If ``column`` type is numerical type such as ``Int32``, ``column``
value and ``value`` are compared as number. If ``column`` type is text
type such as ``ShortText``, ``column`` value and ``value`` are
compared as bit sequence.

It doesn't require the default match columns such as ``full text
search condition`` and ``phrase search condition``.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_less_than_or_equal_to.log
.. select Entries --query n_likes:<=10

The expression matches records that ``n_likes`` column value is less
than or equal to ``10``.

.. _query-syntax-greater-than-or-equal-condition:

Greater than or equal to condition
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Its syntax is ``column:>=value``.

It matches records that ``column`` value is greater than or equal to
``value``.

If ``column`` type is numerical type such as ``Int32``, ``column``
value and ``value`` are compared as number. If ``column`` type is text
type such as ``ShortText``, ``column`` value and ``value`` are
compared as bit sequence.

It doesn't require the default match columns such as ``full text
search condition`` and ``phrase search condition``.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_greater_than_or_equal_to.log
.. select Entries --query n_likes:>=10

The expression matches records that ``n_likes`` column value is
greater than or equal to ``10``.

.. _query-syntax-regular-expression-condition:

Regular expression condition
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. versionadded:: 5.0.1

Its syntax is ``column:~pattern``.

It matches records that ``column`` value is matched to
``pattern``. ``pattern`` must be valid
:doc:`/reference/regular_expression`.

The following example uses ``.roonga`` as pattern. It matches
``Groonga``, ``Mroonga`` and so on.

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_regular_expression.log
.. select Entries --query content:~.roonga

In most cases, regular expression is evaluated sequentially. So it may
be slow against many records.

In some cases, Groonga evaluates regular expression by index. It's
very fast. See :doc:`/reference/regular_expression` for details.

.. _query-syntax-combined-expression:

Combined expression
-------------------

Here is available combined expression list.

.. _query-syntax-logical-or:

Logical OR
^^^^^^^^^^

Its syntax is ``a OR b``.

``a`` and ``b`` are conditional expressions, conbinded expressions or
assignment expressions.

If at least one of ``a`` and ``b`` are matched, ``a OR b`` is matched.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_logical_or.log
.. select Entries --query 'n_likes:>10 OR content:@senna'

The expression matches records that ``n_likes`` column value is
greater than ``10`` or contain a word ``senna`` in ``content`` column
value.

.. _query-syntax-logical-and:

Logical AND
^^^^^^^^^^^

Its syntax is ``a + b`` or just ``a b``.

``a`` and ``b`` are conditional expressions, conbinded expressions or
assignment expressions.

If both ``a`` and ``b`` are matched, ``a + b`` is matched.

You can specify ``+`` the first expression such as ``+a``. The ``+``
is just ignored.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_logical_and.log
.. select Entries --query 'n_likes:>=10 + content:@groonga'

The expression matches records that ``n_likes`` column value is
greater than or equal to ``10`` and contain a word ``groonga`` in
``content`` column value.

.. _query-syntax-logical-and-not:

Logical AND NOT
^^^^^^^^^^^^^^^

Its syntax is ``a - b``.

``a`` and ``b`` are conditional expressions, conbinded expressions or
assignment expressions.

If ``a`` is matched and ``b`` is not matched, ``a - b`` is matched.

You can not specify ``-`` the first expression such as ``-a``. It's
syntax error.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_logical_not.log
.. select Entries --query 'n_likes:>=10 - content:@groonga'

The expression matches records that ``n_likes`` column value is
greater than or equal to ``10`` and don't contain a word ``groonga`` in
``content`` column value.

Grouping
^^^^^^^^

Its syntax is ``(...)``. ``...`` is space separated expression list.

``(...)`` groups one ore more expressions and they can be
processed as an expression. ``a b OR c`` means that ``a`` and ``b``
are matched or ``c`` is matched. ``a (b OR c)`` means that ``a`` and
one of ``b`` and ``c`` are matched.

Here is a simple example:

.. groonga-command
.. include:: ../../example/reference/grn_expr/query_syntax/simple_grouping.log
.. select Entries --query 'n_likes:<5 content:@senna OR content:@fast'
.. select Entries --query 'n_likes:<5 (content:@senna OR content:@fast)'

The first expression doesn't use grouping. It matches records that
``n_likes:<5`` and ``content:@senna`` are matched or
``content:@fast`` is matched.

The second expression uses grouping. It matches records that
``n_likes:<5`` and one of ``content:@senna`` or ``content:@fast``
are matched.

.. _query-syntax-assignment-expression:

Assignment expression
---------------------

This section is for advanced users. Because assignment expression is
disabled in ``--query`` option of :doc:`/reference/commands/select` by
default. You need to specify ``ALLOW_COLUMN|ALLOW_UPDATE`` as
``--query_flags`` option value to enable assignment expression.

Assignment expression in query syntax has some limitations. So you
should use :doc:`/reference/grn_expr/script_syntax` instead of query syntax for
assignment.

There is only one syntax for assignment expression. It's ``column:=value``.

``value`` is assigend to ``column``. ``value`` is always processed as
string in query syntax. ``value`` is casted to the type of ``column``
automatically. It causes some limitations. For example, you cannot use
boolean literal such as ``true`` and ``false`` for ``Bool`` type
column. You need to use empty string for ``false`` but query syntax
doesn't support ``column:=`` syntax.

See :doc:`/reference/cast` about cast.