File: query_syntax.html

package info (click to toggle)
groonga 11.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 121,576 kB
  • sloc: ansic: 801,209; javascript: 62,121; ruby: 46,206; cpp: 33,790; xml: 24,951; yacc: 13,333; sh: 7,776; python: 3,266; makefile: 2,315; perl: 133
file content (1441 lines) | stat: -rw-r--r-- 78,372 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
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441


<!DOCTYPE html>

<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>7.13.1. Query syntax &#8212; Groonga v10.1.1-31-g1e46ba6 documentation</title>
    <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
    <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
    
    <script id="documentation_options" data-url_root="../../" src="../../_static/documentation_options.js"></script>
    <script src="../../_static/jquery.js"></script>
    <script src="../../_static/underscore.js"></script>
    <script src="../../_static/doctools.js"></script>
    <script src="../../_static/language_data.js"></script>
    
    <link rel="shortcut icon" href="../../_static/favicon.ico"/>
    <link rel="index" title="Index" href="../../genindex.html" />
    <link rel="search" title="Search" href="../../search.html" />
    <link rel="next" title="7.13.2. Script syntax" href="script_syntax.html" />
    <link rel="prev" title="7.13. grn_expr" href="../grn_expr.html" /> 
  </head><body>
<div class="header">
  <h1 class="title">
    <a id="top-link" href="../../index.html">
      <span class="project">groonga</span>
      <span class="separator">-</span>
      <span class="description">An open-source fulltext search engine and column store.</span>
    </a>
  </h1>

  <div class="other-language-links">
    <ul>
      <li><a href="../../../../ja/html/reference/grn_expr/query_syntax.html">日本語</a></li>
    </ul>
  </div>
</div>
  

    <div class="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../../genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="script_syntax.html" title="7.13.2. Script syntax"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="../grn_expr.html" title="7.13. grn_expr"
             accesskey="P">previous</a> |</li>
        <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v10.1.1-31-g1e46ba6 documentation</a> &#187;</li>
          <li class="nav-item nav-item-1"><a href="../../reference.html" ><span class="section-number">7. </span>Reference manual</a> &#187;</li>
          <li class="nav-item nav-item-2"><a href="../grn_expr.html" accesskey="U"><span class="section-number">7.13. </span>grn_expr</a> &#187;</li>
        <li class="nav-item nav-item-this"><a href=""><span class="section-number">7.13.1. </span>Query syntax</a></li> 
      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body" role="main">
            
  <div class="section" id="query-syntax">
<h1><span class="section-number">7.13.1. </span>Query syntax<a class="headerlink" href="#query-syntax" title="Permalink to this headline">¶</a></h1>
<p>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, <code class="docutils literal notranslate"><span class="pre">word1</span> <span class="pre">word2</span></code> means that groonga searches records that
contain both <code class="docutils literal notranslate"><span class="pre">word1</span></code> and <code class="docutils literal notranslate"><span class="pre">word2</span></code>. <code class="docutils literal notranslate"><span class="pre">word1</span> <span class="pre">OR</span> <span class="pre">word2</span></code> means that
groonga searches records that contain either <code class="docutils literal notranslate"><span class="pre">word1</span></code> or <code class="docutils literal notranslate"><span class="pre">word2</span></code>.</p>
<p>Query syntax consists of <code class="docutils literal notranslate"><span class="pre">conditional</span> <span class="pre">expression</span></code>, <code class="docutils literal notranslate"><span class="pre">combind</span>
<span class="pre">expression</span></code> and <code class="docutils literal notranslate"><span class="pre">assignment</span> <span class="pre">expression</span></code>. Nomrally <code class="docutils literal notranslate"><span class="pre">assignment</span>
<span class="pre">expression</span></code> can be ignored. Because <code class="docutils literal notranslate"><span class="pre">assignment</span> <span class="pre">expression</span></code> is
disabled in <code class="docutils literal notranslate"><span class="pre">--query</span></code> option of <a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a>. You can use
it if you use groonga as library and customize query syntax parser
options.</p>
<p><code class="docutils literal notranslate"><span class="pre">Conditinal</span> <span class="pre">expression</span></code> specifies an condition. <code class="docutils literal notranslate"><span class="pre">Combinded</span>
<span class="pre">expression</span></code> consists of one or more <code class="docutils literal notranslate"><span class="pre">conditional</span> <span class="pre">expression</span></code>,
<code class="docutils literal notranslate"><span class="pre">combined</span> <span class="pre">expression</span></code> or <code class="docutils literal notranslate"><span class="pre">assignment</span> <span class="pre">expression</span></code>. <code class="docutils literal notranslate"><span class="pre">Assignment</span>
<span class="pre">expression</span></code> can assigns a column to a value.</p>
<div class="section" id="sample-data">
<h2><span class="section-number">7.13.1.1. </span>Sample data<a class="headerlink" href="#sample-data" title="Permalink to this headline">¶</a></h2>
<p>Here are a schema definition and sample data to show usage.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>table_create Entries TABLE_PAT_KEY ShortText
# [[0, 1337566253.89858, 0.000355720520019531], true]
column_create Entries content COLUMN_SCALAR Text
# [[0, 1337566253.89858, 0.000355720520019531], true]
column_create Entries n_likes COLUMN_SCALAR UInt32
# [[0, 1337566253.89858, 0.000355720520019531], true]
table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto
# [[0, 1337566253.89858, 0.000355720520019531], true]
column_create Terms entries_key_index COLUMN_INDEX|WITH_POSITION Entries _key
# [[0, 1337566253.89858, 0.000355720520019531], true]
column_create Terms entries_content_index COLUMN_INDEX|WITH_POSITION Entries content
# [[0, 1337566253.89858, 0.000355720520019531], true]
load --table Entries
[
{&quot;_key&quot;:    &quot;The first post!&quot;,
 &quot;content&quot;: &quot;Welcome! This is my first post!&quot;,
 &quot;n_likes&quot;: 5},
{&quot;_key&quot;:    &quot;Groonga&quot;,
 &quot;content&quot;: &quot;I started to use Groonga. It&#39;s very fast!&quot;,
 &quot;n_likes&quot;: 10},
{&quot;_key&quot;:    &quot;Mroonga&quot;,
 &quot;content&quot;: &quot;I also started to use Mroonga. It&#39;s also very fast! Really fast!&quot;,
 &quot;n_likes&quot;: 15},
{&quot;_key&quot;:    &quot;Good-bye Senna&quot;,
 &quot;content&quot;: &quot;I migrated all Senna system!&quot;,
 &quot;n_likes&quot;: 3},
{&quot;_key&quot;:    &quot;Good-bye Tritonn&quot;,
 &quot;content&quot;: &quot;I also migrated all Tritonn system!&quot;,
 &quot;n_likes&quot;: 3}
]
# [[0, 1337566253.89858, 0.000355720520019531], 5]
</pre></div>
</div>
<p>There is a table, <code class="docutils literal notranslate"><span class="pre">Entries</span></code>, for blog entries. An entry has title,
content and the number of likes for the entry. Title is key of
<code class="docutils literal notranslate"><span class="pre">Entries</span></code>. Content is value of <code class="docutils literal notranslate"><span class="pre">Entries.content</span></code> column. The
number of likes is value of <code class="docutils literal notranslate"><span class="pre">Entries.n_likes</span></code> column.</p>
<p><code class="docutils literal notranslate"><span class="pre">Entries._key</span></code> column and <code class="docutils literal notranslate"><span class="pre">Entries.content</span></code> column are indexed
using <code class="docutils literal notranslate"><span class="pre">TokenBigram</span></code> tokenizer. So both <code class="docutils literal notranslate"><span class="pre">Entries._key</span></code> and
<code class="docutils literal notranslate"><span class="pre">Entries.content</span></code> are fulltext search ready.</p>
<p>OK. The schema and data for examples are ready.</p>
</div>
<div class="section" id="escape">
<h2><span class="section-number">7.13.1.2. </span>Escape<a class="headerlink" href="#escape" title="Permalink to this headline">¶</a></h2>
<p>There are special characters in query syntax. To use a special
character as itself, it should be escaped by prepending <code class="docutils literal notranslate"><span class="pre">\</span></code>. For
example, <code class="docutils literal notranslate"><span class="pre">&quot;</span></code> is a special character. It is escaped as <code class="docutils literal notranslate"><span class="pre">\&quot;</span></code>.</p>
<p>Here is a special character list:</p>
<blockquote>
<div><ul class="simple">
<li><p><code class="docutils literal notranslate"><span class="pre">[space]</span></code> (escaped as <code class="docutils literal notranslate"><span class="pre">[backslash][space]</span></code>) (You should
substitute <code class="docutils literal notranslate"><span class="pre">[space]</span></code> with a white space character that is 0x20
in ASCII and <code class="docutils literal notranslate"><span class="pre">[backslash]</span></code> with <code class="docutils literal notranslate"><span class="pre">\\</span></code>.)</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">&quot;</span></code> (escaped as <code class="docutils literal notranslate"><span class="pre">\&quot;</span></code>)</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">(</span></code> (escaped as <code class="docutils literal notranslate"><span class="pre">\(</span></code>)</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">)</span></code> (escaped as <code class="docutils literal notranslate"><span class="pre">\)</span></code>)</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">\</span></code> (escaped as <code class="docutils literal notranslate"><span class="pre">\\</span></code>)</p></li>
</ul>
</div></blockquote>
<p>You can use quote instead of escape special characters except <code class="docutils literal notranslate"><span class="pre">\</span></code>
(backslash). You need to use backslash for escaping backslash like
<code class="docutils literal notranslate"><span class="pre">\\</span></code> in quote.</p>
<p>Quote syntax is <code class="docutils literal notranslate"><span class="pre">&quot;...&quot;</span></code>. You need escape <code class="docutils literal notranslate"><span class="pre">&quot;</span></code> as
<code class="docutils literal notranslate"><span class="pre">\&quot;</span></code> in <code class="docutils literal notranslate"><span class="pre">&quot;...&quot;</span></code> quote syntax. For example, <code class="docutils literal notranslate"><span class="pre">You</span> <span class="pre">say</span> <span class="pre">&quot;Hello</span> <span class="pre">Alice!&quot;</span></code> can be
quoted <code class="docutils literal notranslate"><span class="pre">&quot;You</span> <span class="pre">say</span> <span class="pre">\&quot;Hello</span> <span class="pre">Alice!\&quot;&quot;</span></code>.</p>
<p>In addition <code class="docutils literal notranslate"><span class="pre">'...'</span></code> isn’t  available in query syntax.</p>
<div class="admonition note">
<p class="admonition-title">Note</p>
<p>There is an important point which you have to care. The <code class="docutils literal notranslate"><span class="pre">\</span></code>
(backslash) character is interpreted by command line shell. So if
you want to search <code class="docutils literal notranslate"><span class="pre">(</span></code> itself for example, you need to escape
twice (<code class="docutils literal notranslate"><span class="pre">\\(</span></code>) in command line shell.  The command line shell
interprets <code class="docutils literal notranslate"><span class="pre">\\(</span></code> as <code class="docutils literal notranslate"><span class="pre">\(</span></code>, then pass such a literal to
Groonga. Groonga regards <code class="docutils literal notranslate"><span class="pre">\(</span></code> as <code class="docutils literal notranslate"><span class="pre">(</span></code>, then search <code class="docutils literal notranslate"><span class="pre">(</span></code> itself
from database. If you can’t do intended search by Groonga, confirm
whether special character is escaped properly.</p>
</div>
</div>
<div class="section" id="conditional-expression">
<span id="query-syntax-conditional-expression"></span><h2><span class="section-number">7.13.1.3. </span>Conditional expression<a class="headerlink" href="#conditional-expression" title="Permalink to this headline">¶</a></h2>
<p>Here is available conditional expression list.</p>
<div class="section" id="full-text-search-condition">
<span id="query-syntax-full-text-search-condition"></span><h3><span class="section-number">7.13.1.3.1. </span>Full text search condition<a class="headerlink" href="#full-text-search-condition" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">keyword</span></code>.</p>
<p><code class="docutils literal notranslate"><span class="pre">Full</span> <span class="pre">text</span> <span class="pre">search</span> <span class="pre">condition</span></code> specifies a full text search condition
against the default match columns. Match columns are full text search
target columns.</p>
<p>You should specify the default match columns for full text
search. They can be specified by <code class="docutils literal notranslate"><span class="pre">--match_columns</span></code> option of
<a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a>. If you don’t specify the default match
columns, this conditional expression fails.</p>
<p>This conditional expression does full text search with
<code class="docutils literal notranslate"><span class="pre">keyword</span></code>. <code class="docutils literal notranslate"><span class="pre">keyword</span></code> should not contain any spaces. If <code class="docutils literal notranslate"><span class="pre">keyword</span></code>
contains a space such as <code class="docutils literal notranslate"><span class="pre">search</span> <span class="pre">keyword</span></code>, it means two full text
search conditions; <code class="docutils literal notranslate"><span class="pre">search</span></code> and <code class="docutils literal notranslate"><span class="pre">keyword</span></code>. If you want to
specifies a keyword that contains one or more spaces, you can use
<code class="docutils literal notranslate"><span class="pre">phrase</span> <span class="pre">search</span> <span class="pre">condition</span></code> that is described below.</p>
<p>Here is a simple example.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --match_columns content --query fast
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         2
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         2,
#         &quot;Groonga&quot;,
#         &quot;I started to use Groonga. It&#39;s very fast!&quot;,
#         10
#       ],
#       [
#         3,
#         &quot;Mroonga&quot;,
#         &quot;I also started to use Mroonga. It&#39;s also very fast! Really fast!&quot;,
#         15
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The expression matches records that contain a word <code class="docutils literal notranslate"><span class="pre">fast</span></code> in
<code class="docutils literal notranslate"><span class="pre">content</span></code> column value.</p>
<p><code class="docutils literal notranslate"><span class="pre">content</span></code> column is the default match column.</p>
</div>
<div class="section" id="phrase-search-condition">
<span id="query-syntax-phrase-search-condition"></span><h3><span class="section-number">7.13.1.3.2. </span>Phrase search condition<a class="headerlink" href="#phrase-search-condition" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">&quot;search</span> <span class="pre">keyword&quot;</span></code>.</p>
<p><code class="docutils literal notranslate"><span class="pre">Phrase</span> <span class="pre">search</span> <span class="pre">condition</span></code> specifies a phrase search condition
against the default match columns.</p>
<p>You should specify the default match columns for full text
search. They can be specified by <code class="docutils literal notranslate"><span class="pre">--match_columns</span></code> option of
<a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a>. If you don’t specify the default match
columns, this conditional expression fails.</p>
<p>This conditional expression does phrase search with <code class="docutils literal notranslate"><span class="pre">search</span>
<span class="pre">keyword</span></code>. Phrase search searches records that contain <code class="docutils literal notranslate"><span class="pre">search</span></code> and
<code class="docutils literal notranslate"><span class="pre">keyword</span></code> and those terms are appeared in the same order and
adjacent. Thus, <code class="docutils literal notranslate"><span class="pre">Put</span> <span class="pre">a</span> <span class="pre">search</span> <span class="pre">keyword</span> <span class="pre">in</span> <span class="pre">the</span> <span class="pre">form</span></code> is matched but
<code class="docutils literal notranslate"><span class="pre">Search</span> <span class="pre">by</span> <span class="pre">the</span> <span class="pre">keyword</span></code> and <code class="docutils literal notranslate"><span class="pre">There</span> <span class="pre">is</span> <span class="pre">a</span> <span class="pre">keyword.</span> <span class="pre">Search</span> <span class="pre">by</span> <span class="pre">it!</span></code>
aren’t matched.</p>
<p>Here is a simple example.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --match_columns content --query &#39;&quot;I started&quot;&#39;
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         1
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         2,
#         &quot;Groonga&quot;,
#         &quot;I started to use Groonga. It&#39;s very fast!&quot;,
#         10
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The expression matches records that contain a phrase <code class="docutils literal notranslate"><span class="pre">I</span> <span class="pre">started</span></code> in
<code class="docutils literal notranslate"><span class="pre">content</span></code> column value. <code class="docutils literal notranslate"><span class="pre">I</span> <span class="pre">also</span> <span class="pre">started</span></code> isn’t matched because
<code class="docutils literal notranslate"><span class="pre">I</span></code> and <code class="docutils literal notranslate"><span class="pre">started</span></code> aren’t adjacent.</p>
<p><code class="docutils literal notranslate"><span class="pre">content</span></code> column is the default match column.</p>
</div>
<div class="section" id="full-text-search-condition-with-explicit-match-column">
<span id="query-syntax-full-text-search-condition-with-explicit-match-column"></span><h3><span class="section-number">7.13.1.3.3. </span>Full text search condition (with explicit match column)<a class="headerlink" href="#full-text-search-condition-with-explicit-match-column" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">column:&#64;keyword</span></code>.</p>
<p>It’s similar to <code class="docutils literal notranslate"><span class="pre">full</span> <span class="pre">text</span> <span class="pre">search</span> <span class="pre">condition</span></code> but it doesn’t require
the default match columns. You need to specify match column for the
full text search condition by <code class="docutils literal notranslate"><span class="pre">column:</span></code> instead of
<code class="docutils literal notranslate"><span class="pre">--match_columns</span></code> option of <a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a>.</p>
<p>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 <code class="docutils literal notranslate"><span class="pre">--match_columns</span></code> option can’t be specified multiple
times. You need to specify the second match column by this conditional
expression.</p>
<p>The different between <code class="docutils literal notranslate"><span class="pre">full</span> <span class="pre">text</span> <span class="pre">search</span> <span class="pre">condition</span></code> and <code class="docutils literal notranslate"><span class="pre">full</span> <span class="pre">text</span>
<span class="pre">search</span> <span class="pre">condition</span> <span class="pre">(with</span> <span class="pre">explicit</span> <span class="pre">match</span> <span class="pre">column)</span></code> is whether advanced
match columns are supported or not. <code class="docutils literal notranslate"><span class="pre">Full</span> <span class="pre">text</span> <span class="pre">search</span> <span class="pre">condition</span></code>
supports advanced match columns but <code class="docutils literal notranslate"><span class="pre">full</span> <span class="pre">text</span> <span class="pre">search</span> <span class="pre">condition</span> <span class="pre">(with</span>
<span class="pre">explicit</span> <span class="pre">match</span> <span class="pre">column)</span></code> isn’t supported. Advanced match columns has
the following features:</p>
<blockquote>
<div><ul class="simple">
<li><p>Weight is supported.</p></li>
<li><p>Using multiple columns are supported.</p></li>
<li><p>Using index column as a match column is supported.</p></li>
</ul>
</div></blockquote>
<p>See description of <code class="docutils literal notranslate"><span class="pre">--match_columns</span></code> option of
<a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a> about them.</p>
<p>Here is a simple example.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --query content:@fast
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         2
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         2,
#         &quot;Groonga&quot;,
#         &quot;I started to use Groonga. It&#39;s very fast!&quot;,
#         10
#       ],
#       [
#         3,
#         &quot;Mroonga&quot;,
#         &quot;I also started to use Mroonga. It&#39;s also very fast! Really fast!&quot;,
#         15
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The expression matches records that contain a word <code class="docutils literal notranslate"><span class="pre">fast</span></code> in
<code class="docutils literal notranslate"><span class="pre">content</span></code> column value.</p>
</div>
<div class="section" id="phrase-search-condition-with-explicit-match-column">
<h3><span class="section-number">7.13.1.3.4. </span>Phrase search condition (with explicit match column)<a class="headerlink" href="#phrase-search-condition-with-explicit-match-column" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">column:&#64;&quot;search</span> <span class="pre">keyword&quot;</span></code>.</p>
<p>It’s similar to <code class="docutils literal notranslate"><span class="pre">phrase</span> <span class="pre">search</span> <span class="pre">condition</span></code> but it doesn’t require the
default match columns. You need to specify match column for the phrase
search condition by <code class="docutils literal notranslate"><span class="pre">column:</span></code> instead of <code class="docutils literal notranslate"><span class="pre">--match_columns</span></code> option
of <a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a>.</p>
<p>The different between <code class="docutils literal notranslate"><span class="pre">phrase</span> <span class="pre">search</span> <span class="pre">condition</span></code> and <code class="docutils literal notranslate"><span class="pre">phrase</span> <span class="pre">search</span>
<span class="pre">condition</span> <span class="pre">(with</span> <span class="pre">explicit</span> <span class="pre">match</span> <span class="pre">column)</span></code> is similar to between <code class="docutils literal notranslate"><span class="pre">full</span>
<span class="pre">text</span> <span class="pre">search</span> <span class="pre">condition</span></code> and <code class="docutils literal notranslate"><span class="pre">full</span> <span class="pre">text</span> <span class="pre">search</span> <span class="pre">condition</span> <span class="pre">(with</span>
<span class="pre">explicit</span> <span class="pre">match</span> <span class="pre">column)</span></code>. <code class="docutils literal notranslate"><span class="pre">Phrase</span> <span class="pre">search</span> <span class="pre">condition</span></code> supports
advanced match columns but <code class="docutils literal notranslate"><span class="pre">phrase</span> <span class="pre">search</span> <span class="pre">condition</span> <span class="pre">(with</span> <span class="pre">explicit</span>
<span class="pre">match</span> <span class="pre">column)</span></code> isn’t supported. See description of <code class="docutils literal notranslate"><span class="pre">full</span> <span class="pre">text</span> <span class="pre">search</span>
<span class="pre">condition</span> <span class="pre">(with</span> <span class="pre">explicit</span> <span class="pre">match</span> <span class="pre">column)</span></code> about advanced match columns.</p>
<p>Here is a simple example.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --query &#39;content:@&quot;I started&quot;&#39;
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         1
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         2,
#         &quot;Groonga&quot;,
#         &quot;I started to use Groonga. It&#39;s very fast!&quot;,
#         10
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The expression matches records that contain a phrase <code class="docutils literal notranslate"><span class="pre">I</span> <span class="pre">started</span></code> in
<code class="docutils literal notranslate"><span class="pre">content</span></code> column value. <code class="docutils literal notranslate"><span class="pre">I</span> <span class="pre">also</span> <span class="pre">started</span></code> isn’t matched because
<code class="docutils literal notranslate"><span class="pre">I</span></code> and <code class="docutils literal notranslate"><span class="pre">started</span></code> aren’t adjacent.</p>
</div>
<div class="section" id="prefix-search-condition">
<span id="query-syntax-prefix-search-condition"></span><h3><span class="section-number">7.13.1.3.5. </span>Prefix search condition<a class="headerlink" href="#prefix-search-condition" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">column:^value</span></code> or <code class="docutils literal notranslate"><span class="pre">value*</span></code>.</p>
<p>This conditional expression does prefix search with <code class="docutils literal notranslate"><span class="pre">value</span></code>. Prefix
search searches records that contain a word that starts with <code class="docutils literal notranslate"><span class="pre">value</span></code>.</p>
<p>You can use fast prefix search against a column. The column must be
indexed and index table must be patricia trie table
(<code class="docutils literal notranslate"><span class="pre">TABLE_PAT_KEY</span></code>) or double array trie table
(<code class="docutils literal notranslate"><span class="pre">TABLE_DAT_KEY</span></code>). You can also use fast prefix search against
<code class="docutils literal notranslate"><span class="pre">_key</span></code> pseudo column of patricia trie table or double array trie
table. You don’t need to index <code class="docutils literal notranslate"><span class="pre">_key</span></code>.</p>
<p>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.</p>
<p>It doesn’t require the default match columns such as <code class="docutils literal notranslate"><span class="pre">full</span> <span class="pre">text</span>
<span class="pre">search</span> <span class="pre">condition</span></code> and <code class="docutils literal notranslate"><span class="pre">phrase</span> <span class="pre">search</span> <span class="pre">condition</span></code>.</p>
<p>Here is a simple example.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --query &#39;_key:^Goo&#39;
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         2
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         5,
#         &quot;Good-bye Tritonn&quot;,
#         &quot;I also migrated all Tritonn system!&quot;,
#         3
#       ],
#       [
#         4,
#         &quot;Good-bye Senna&quot;,
#         &quot;I migrated all Senna system!&quot;,
#         3
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The expression matches records that contain a word that starts with
<code class="docutils literal notranslate"><span class="pre">Goo</span></code> in <code class="docutils literal notranslate"><span class="pre">_key</span></code> pseudo column value. <code class="docutils literal notranslate"><span class="pre">Good-bye</span> <span class="pre">Senna</span></code> and
<code class="docutils literal notranslate"><span class="pre">Good-bye</span> <span class="pre">Tritonn</span></code> are matched with the expression.</p>
</div>
<div class="section" id="suffix-search-condition">
<span id="query-syntax-suffix-search-condition"></span><h3><span class="section-number">7.13.1.3.6. </span>Suffix search condition<a class="headerlink" href="#suffix-search-condition" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">column:$value</span></code>.</p>
<p>This conditional expression does suffix search with <code class="docutils literal notranslate"><span class="pre">value</span></code>. Suffix
search searches records that contain a word that ends with <code class="docutils literal notranslate"><span class="pre">value</span></code>.</p>
<p>You can use fast suffix search against a column. The column must be
indexed and index table must be patricia trie table
(<code class="docutils literal notranslate"><span class="pre">TABLE_PAT_KEY</span></code>) with <code class="docutils literal notranslate"><span class="pre">KEY_WITH_SIS</span></code> flag. You can also use fast
suffix search against <code class="docutils literal notranslate"><span class="pre">_key</span></code> pseudo column of patricia trie table
(<code class="docutils literal notranslate"><span class="pre">TABLE_PAT_KEY</span></code>) with <code class="docutils literal notranslate"><span class="pre">KEY_WITH_SIS</span></code> flag. You don’t need to
index <code class="docutils literal notranslate"><span class="pre">_key</span></code>. We recommended that you use index column based fast
suffix search instead of <code class="docutils literal notranslate"><span class="pre">_key</span></code> based fast suffix search. <code class="docutils literal notranslate"><span class="pre">_key</span></code>
based fast suffix search returns automatically registered
substrings. (TODO: write document about suffix search and link to it
from here.)</p>
<div class="admonition note">
<p class="admonition-title">Note</p>
<p>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.</p>
</div>
<p>Suffix search can be used with other table types or patricia trie
table without <code class="docutils literal notranslate"><span class="pre">KEY_WITH_SIS</span></code> flag but it causes all records
scan. It’s not problem for small records but it spends more time for
large records.</p>
<p>It doesn’t require the default match columns such as <code class="docutils literal notranslate"><span class="pre">full</span> <span class="pre">text</span>
<span class="pre">search</span> <span class="pre">condition</span></code> and <code class="docutils literal notranslate"><span class="pre">phrase</span> <span class="pre">search</span> <span class="pre">condition</span></code>.</p>
<p>Here is a simple example. It uses fast suffix search for hiragana in
Japanese that is one of non-ASCII characters.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>table_create Titles TABLE_NO_KEY
# [[0, 1337566253.89858, 0.000355720520019531], true]
column_create Titles content COLUMN_SCALAR ShortText
# [[0, 1337566253.89858, 0.000355720520019531], true]
table_create SuffixSearchTerms TABLE_PAT_KEY|KEY_WITH_SIS ShortText
# [[0, 1337566253.89858, 0.000355720520019531], true]
column_create SuffixSearchTerms index COLUMN_INDEX Titles content
# [[0, 1337566253.89858, 0.000355720520019531], true]
load --table Titles
[
{&quot;content&quot;: &quot;ぐるんが&quot;},
{&quot;content&quot;: &quot;むるんが&quot;},
{&quot;content&quot;: &quot;せな&quot;},
{&quot;content&quot;: &quot;とりとん&quot;}
]
# [[0, 1337566253.89858, 0.000355720520019531], 4]
select Titles --query &#39;content:$んが&#39;
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         2
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;ShortText&quot;
#         ]
#       ],
#       [
#         2,
#         &quot;むるんが&quot;
#       ],
#       [
#         1,
#         &quot;ぐるんが&quot;
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The expression matches records that have value that ends with <code class="docutils literal notranslate"><span class="pre">んが</span></code>
in <code class="docutils literal notranslate"><span class="pre">content</span></code> column value. <code class="docutils literal notranslate"><span class="pre">ぐるんが</span></code> and <code class="docutils literal notranslate"><span class="pre">むるんが</span></code> are matched
with the expression.</p>
</div>
<div class="section" id="near-search-condition">
<span id="query-syntax-near-search-condition"></span><h3><span class="section-number">7.13.1.3.7. </span>Near search condition<a class="headerlink" href="#near-search-condition" title="Permalink to this headline">¶</a></h3>
<p>TODO: <code class="docutils literal notranslate"><span class="pre">*N&quot;word1</span> <span class="pre">word2</span> <span class="pre">...&quot;</span></code></p>
</div>
<div class="section" id="near-phrase-search-condition">
<span id="query-syntax-near-phrase-search-condition"></span><h3><span class="section-number">7.13.1.3.8. </span>Near phrase search condition<a class="headerlink" href="#near-phrase-search-condition" title="Permalink to this headline">¶</a></h3>
<p>TODO: <code class="docutils literal notranslate"><span class="pre">*NP&quot;phrase1</span> <span class="pre">phrase2</span> <span class="pre">...&quot;</span></code></p>
</div>
<div class="section" id="similar-search-condition">
<span id="query-syntax-similar-search-condition"></span><h3><span class="section-number">7.13.1.3.9. </span>Similar search condition<a class="headerlink" href="#similar-search-condition" title="Permalink to this headline">¶</a></h3>
<p>TODO</p>
</div>
<div class="section" id="equal-condition">
<span id="query-syntax-equal-condition"></span><h3><span class="section-number">7.13.1.3.10. </span>Equal condition<a class="headerlink" href="#equal-condition" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">column:value</span></code>.</p>
<p>It matches records that <code class="docutils literal notranslate"><span class="pre">column</span></code> value is equal to <code class="docutils literal notranslate"><span class="pre">value</span></code>.</p>
<p>It doesn’t require the default match columns such as <code class="docutils literal notranslate"><span class="pre">full</span> <span class="pre">text</span>
<span class="pre">search</span> <span class="pre">condition</span></code> and <code class="docutils literal notranslate"><span class="pre">phrase</span> <span class="pre">search</span> <span class="pre">condition</span></code>.</p>
<p>Here is a simple example.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --query _key:Groonga
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         1
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         2,
#         &quot;Groonga&quot;,
#         &quot;I started to use Groonga. It&#39;s very fast!&quot;,
#         10
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The expression matches records that <code class="docutils literal notranslate"><span class="pre">_key</span></code> column value is
equal to <code class="docutils literal notranslate"><span class="pre">Groonga</span></code>.</p>
</div>
<div class="section" id="not-equal-condition">
<span id="query-syntax-not-equal-condition"></span><h3><span class="section-number">7.13.1.3.11. </span>Not equal condition<a class="headerlink" href="#not-equal-condition" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">column:!value</span></code>.</p>
<p>It matches records that <code class="docutils literal notranslate"><span class="pre">column</span></code> value isn’t equal to <code class="docutils literal notranslate"><span class="pre">value</span></code>.</p>
<p>It doesn’t require the default match columns such as <code class="docutils literal notranslate"><span class="pre">full</span> <span class="pre">text</span>
<span class="pre">search</span> <span class="pre">condition</span></code> and <code class="docutils literal notranslate"><span class="pre">phrase</span> <span class="pre">search</span> <span class="pre">condition</span></code>.</p>
<p>Here is a simple example.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --query _key:!Groonga
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         4
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         4,
#         &quot;Good-bye Senna&quot;,
#         &quot;I migrated all Senna system!&quot;,
#         3
#       ],
#       [
#         5,
#         &quot;Good-bye Tritonn&quot;,
#         &quot;I also migrated all Tritonn system!&quot;,
#         3
#       ],
#       [
#         3,
#         &quot;Mroonga&quot;,
#         &quot;I also started to use Mroonga. It&#39;s also very fast! Really fast!&quot;,
#         15
#       ],
#       [
#         1,
#         &quot;The first post!&quot;,
#         &quot;Welcome! This is my first post!&quot;,
#         5
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The expression matches records that <code class="docutils literal notranslate"><span class="pre">_key</span></code> column value is not equal
to <code class="docutils literal notranslate"><span class="pre">Groonga</span></code>.</p>
</div>
<div class="section" id="less-than-condition">
<span id="query-syntax-less-than-condition"></span><h3><span class="section-number">7.13.1.3.12. </span>Less than condition<a class="headerlink" href="#less-than-condition" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">column:&lt;value</span></code>.</p>
<p>It matches records that <code class="docutils literal notranslate"><span class="pre">column</span></code> value is less than <code class="docutils literal notranslate"><span class="pre">value</span></code>.</p>
<p>If <code class="docutils literal notranslate"><span class="pre">column</span></code> type is numerical type such as <code class="docutils literal notranslate"><span class="pre">Int32</span></code>, <code class="docutils literal notranslate"><span class="pre">column</span></code>
value and <code class="docutils literal notranslate"><span class="pre">value</span></code> are compared as number. If <code class="docutils literal notranslate"><span class="pre">column</span></code> type is text
type such as <code class="docutils literal notranslate"><span class="pre">ShortText</span></code>, <code class="docutils literal notranslate"><span class="pre">column</span></code> value and <code class="docutils literal notranslate"><span class="pre">value</span></code> are
compared as bit sequence.</p>
<p>It doesn’t require the default match columns such as <code class="docutils literal notranslate"><span class="pre">full</span> <span class="pre">text</span>
<span class="pre">search</span> <span class="pre">condition</span></code> and <code class="docutils literal notranslate"><span class="pre">phrase</span> <span class="pre">search</span> <span class="pre">condition</span></code>.</p>
<p>Here is a simple example.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --query n_likes:&lt;10
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         3
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         4,
#         &quot;Good-bye Senna&quot;,
#         &quot;I migrated all Senna system!&quot;,
#         3
#       ],
#       [
#         5,
#         &quot;Good-bye Tritonn&quot;,
#         &quot;I also migrated all Tritonn system!&quot;,
#         3
#       ],
#       [
#         1,
#         &quot;The first post!&quot;,
#         &quot;Welcome! This is my first post!&quot;,
#         5
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The expression matches records that <code class="docutils literal notranslate"><span class="pre">n_likes</span></code> column value is less
than <code class="docutils literal notranslate"><span class="pre">10</span></code>.</p>
</div>
<div class="section" id="greater-than-condition">
<span id="query-syntax-greater-than-condition"></span><h3><span class="section-number">7.13.1.3.13. </span>Greater than condition<a class="headerlink" href="#greater-than-condition" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">column:&gt;value</span></code>.</p>
<p>It matches records that <code class="docutils literal notranslate"><span class="pre">column</span></code> value is greater than <code class="docutils literal notranslate"><span class="pre">value</span></code>.</p>
<p>If <code class="docutils literal notranslate"><span class="pre">column</span></code> type is numerical type such as <code class="docutils literal notranslate"><span class="pre">Int32</span></code>, <code class="docutils literal notranslate"><span class="pre">column</span></code>
value and <code class="docutils literal notranslate"><span class="pre">value</span></code> are compared as number. If <code class="docutils literal notranslate"><span class="pre">column</span></code> type is text
type such as <code class="docutils literal notranslate"><span class="pre">ShortText</span></code>, <code class="docutils literal notranslate"><span class="pre">column</span></code> value and <code class="docutils literal notranslate"><span class="pre">value</span></code> are
compared as bit sequence.</p>
<p>It doesn’t require the default match columns such as <code class="docutils literal notranslate"><span class="pre">full</span> <span class="pre">text</span>
<span class="pre">search</span> <span class="pre">condition</span></code> and <code class="docutils literal notranslate"><span class="pre">phrase</span> <span class="pre">search</span> <span class="pre">condition</span></code>.</p>
<p>Here is a simple example.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --query n_likes:&gt;10
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         1
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         3,
#         &quot;Mroonga&quot;,
#         &quot;I also started to use Mroonga. It&#39;s also very fast! Really fast!&quot;,
#         15
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The expression matches records that <code class="docutils literal notranslate"><span class="pre">n_likes</span></code> column value is greater
than <code class="docutils literal notranslate"><span class="pre">10</span></code>.</p>
</div>
<div class="section" id="less-than-or-equal-to-condition">
<span id="query-syntax-less-than-or-equal-condition"></span><h3><span class="section-number">7.13.1.3.14. </span>Less than or equal to condition<a class="headerlink" href="#less-than-or-equal-to-condition" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">column:&lt;=value</span></code>.</p>
<p>It matches records that <code class="docutils literal notranslate"><span class="pre">column</span></code> value is less than or equal to
<code class="docutils literal notranslate"><span class="pre">value</span></code>.</p>
<p>If <code class="docutils literal notranslate"><span class="pre">column</span></code> type is numerical type such as <code class="docutils literal notranslate"><span class="pre">Int32</span></code>, <code class="docutils literal notranslate"><span class="pre">column</span></code>
value and <code class="docutils literal notranslate"><span class="pre">value</span></code> are compared as number. If <code class="docutils literal notranslate"><span class="pre">column</span></code> type is text
type such as <code class="docutils literal notranslate"><span class="pre">ShortText</span></code>, <code class="docutils literal notranslate"><span class="pre">column</span></code> value and <code class="docutils literal notranslate"><span class="pre">value</span></code> are
compared as bit sequence.</p>
<p>It doesn’t require the default match columns such as <code class="docutils literal notranslate"><span class="pre">full</span> <span class="pre">text</span>
<span class="pre">search</span> <span class="pre">condition</span></code> and <code class="docutils literal notranslate"><span class="pre">phrase</span> <span class="pre">search</span> <span class="pre">condition</span></code>.</p>
<p>Here is a simple example.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --query n_likes:&lt;=10
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         4
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         4,
#         &quot;Good-bye Senna&quot;,
#         &quot;I migrated all Senna system!&quot;,
#         3
#       ],
#       [
#         5,
#         &quot;Good-bye Tritonn&quot;,
#         &quot;I also migrated all Tritonn system!&quot;,
#         3
#       ],
#       [
#         2,
#         &quot;Groonga&quot;,
#         &quot;I started to use Groonga. It&#39;s very fast!&quot;,
#         10
#       ],
#       [
#         1,
#         &quot;The first post!&quot;,
#         &quot;Welcome! This is my first post!&quot;,
#         5
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The expression matches records that <code class="docutils literal notranslate"><span class="pre">n_likes</span></code> column value is less
than or equal to <code class="docutils literal notranslate"><span class="pre">10</span></code>.</p>
</div>
<div class="section" id="greater-than-or-equal-to-condition">
<span id="query-syntax-greater-than-or-equal-condition"></span><h3><span class="section-number">7.13.1.3.15. </span>Greater than or equal to condition<a class="headerlink" href="#greater-than-or-equal-to-condition" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">column:&gt;=value</span></code>.</p>
<p>It matches records that <code class="docutils literal notranslate"><span class="pre">column</span></code> value is greater than or equal to
<code class="docutils literal notranslate"><span class="pre">value</span></code>.</p>
<p>If <code class="docutils literal notranslate"><span class="pre">column</span></code> type is numerical type such as <code class="docutils literal notranslate"><span class="pre">Int32</span></code>, <code class="docutils literal notranslate"><span class="pre">column</span></code>
value and <code class="docutils literal notranslate"><span class="pre">value</span></code> are compared as number. If <code class="docutils literal notranslate"><span class="pre">column</span></code> type is text
type such as <code class="docutils literal notranslate"><span class="pre">ShortText</span></code>, <code class="docutils literal notranslate"><span class="pre">column</span></code> value and <code class="docutils literal notranslate"><span class="pre">value</span></code> are
compared as bit sequence.</p>
<p>It doesn’t require the default match columns such as <code class="docutils literal notranslate"><span class="pre">full</span> <span class="pre">text</span>
<span class="pre">search</span> <span class="pre">condition</span></code> and <code class="docutils literal notranslate"><span class="pre">phrase</span> <span class="pre">search</span> <span class="pre">condition</span></code>.</p>
<p>Here is a simple example.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --query n_likes:&gt;=10
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         2
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         2,
#         &quot;Groonga&quot;,
#         &quot;I started to use Groonga. It&#39;s very fast!&quot;,
#         10
#       ],
#       [
#         3,
#         &quot;Mroonga&quot;,
#         &quot;I also started to use Mroonga. It&#39;s also very fast! Really fast!&quot;,
#         15
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The expression matches records that <code class="docutils literal notranslate"><span class="pre">n_likes</span></code> column value is
greater than or equal to <code class="docutils literal notranslate"><span class="pre">10</span></code>.</p>
</div>
<div class="section" id="regular-expression-condition">
<span id="query-syntax-regular-expression-condition"></span><h3><span class="section-number">7.13.1.3.16. </span>Regular expression condition<a class="headerlink" href="#regular-expression-condition" title="Permalink to this headline">¶</a></h3>
<div class="versionadded">
<p><span class="versionmodified added">New in version 5.0.1.</span></p>
</div>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">column:~pattern</span></code>.</p>
<p>It matches records that <code class="docutils literal notranslate"><span class="pre">column</span></code> value is matched to
<code class="docutils literal notranslate"><span class="pre">pattern</span></code>. <code class="docutils literal notranslate"><span class="pre">pattern</span></code> must be valid
<a class="reference internal" href="../regular_expression.html"><span class="doc">Regular expression</span></a>.</p>
<p>The following example uses <code class="docutils literal notranslate"><span class="pre">.roonga</span></code> as pattern. It matches
<code class="docutils literal notranslate"><span class="pre">Groonga</span></code>, <code class="docutils literal notranslate"><span class="pre">Mroonga</span></code> and so on.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --query content:~.roonga
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         2
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         2,
#         &quot;Groonga&quot;,
#         &quot;I started to use Groonga. It&#39;s very fast!&quot;,
#         10
#       ],
#       [
#         3,
#         &quot;Mroonga&quot;,
#         &quot;I also started to use Mroonga. It&#39;s also very fast! Really fast!&quot;,
#         15
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>In most cases, regular expression is evaluated sequentially. So it may
be slow against many records.</p>
<p>In some cases, Groonga evaluates regular expression by index. It’s
very fast. See <a class="reference internal" href="../regular_expression.html"><span class="doc">Regular expression</span></a> for details.</p>
</div>
</div>
<div class="section" id="combined-expression">
<span id="query-syntax-combined-expression"></span><h2><span class="section-number">7.13.1.4. </span>Combined expression<a class="headerlink" href="#combined-expression" title="Permalink to this headline">¶</a></h2>
<p>Here is available combined expression list.</p>
<div class="section" id="logical-or">
<h3><span class="section-number">7.13.1.4.1. </span>Logical OR<a class="headerlink" href="#logical-or" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">a</span> <span class="pre">OR</span> <span class="pre">b</span></code>.</p>
<p><code class="docutils literal notranslate"><span class="pre">a</span></code> and <code class="docutils literal notranslate"><span class="pre">b</span></code> are conditional expressions, conbinded expressions or
assignment expressions.</p>
<p>If at least one of <code class="docutils literal notranslate"><span class="pre">a</span></code> and <code class="docutils literal notranslate"><span class="pre">b</span></code> are matched, <code class="docutils literal notranslate"><span class="pre">a</span> <span class="pre">OR</span> <span class="pre">b</span></code> is matched.</p>
<p>Here is a simple example.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --query &#39;n_likes:&gt;10 OR content:@senna&#39;
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         2
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         3,
#         &quot;Mroonga&quot;,
#         &quot;I also started to use Mroonga. It&#39;s also very fast! Really fast!&quot;,
#         15
#       ],
#       [
#         4,
#         &quot;Good-bye Senna&quot;,
#         &quot;I migrated all Senna system!&quot;,
#         3
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The expression matches records that <code class="docutils literal notranslate"><span class="pre">n_likes</span></code> column value is
greater than <code class="docutils literal notranslate"><span class="pre">10</span></code> or contain a word <code class="docutils literal notranslate"><span class="pre">senna</span></code> in <code class="docutils literal notranslate"><span class="pre">content</span></code> column
value.</p>
</div>
<div class="section" id="logical-and">
<h3><span class="section-number">7.13.1.4.2. </span>Logical AND<a class="headerlink" href="#logical-and" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">a</span> <span class="pre">+</span> <span class="pre">b</span></code> or just <code class="docutils literal notranslate"><span class="pre">a</span> <span class="pre">b</span></code>.</p>
<p><code class="docutils literal notranslate"><span class="pre">a</span></code> and <code class="docutils literal notranslate"><span class="pre">b</span></code> are conditional expressions, conbinded expressions or
assignment expressions.</p>
<p>If both <code class="docutils literal notranslate"><span class="pre">a</span></code> and <code class="docutils literal notranslate"><span class="pre">b</span></code> are matched, <code class="docutils literal notranslate"><span class="pre">a</span> <span class="pre">+</span> <span class="pre">b</span></code> is matched.</p>
<p>You can specify <code class="docutils literal notranslate"><span class="pre">+</span></code> the first expression such as <code class="docutils literal notranslate"><span class="pre">+a</span></code>. The <code class="docutils literal notranslate"><span class="pre">+</span></code>
is just ignored.</p>
<p>Here is a simple example.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --query &#39;n_likes:&gt;=10 + content:@groonga&#39;
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         1
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         2,
#         &quot;Groonga&quot;,
#         &quot;I started to use Groonga. It&#39;s very fast!&quot;,
#         10
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The expression matches records that <code class="docutils literal notranslate"><span class="pre">n_likes</span></code> column value is
greater than or equal to <code class="docutils literal notranslate"><span class="pre">10</span></code> and contain a word <code class="docutils literal notranslate"><span class="pre">groonga</span></code> in
<code class="docutils literal notranslate"><span class="pre">content</span></code> column value.</p>
</div>
<div class="section" id="logical-not">
<h3><span class="section-number">7.13.1.4.3. </span>Logical NOT<a class="headerlink" href="#logical-not" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">a</span> <span class="pre">-</span> <span class="pre">b</span></code>.</p>
<p><code class="docutils literal notranslate"><span class="pre">a</span></code> and <code class="docutils literal notranslate"><span class="pre">b</span></code> are conditional expressions, conbinded expressions or
assignment expressions.</p>
<p>If <code class="docutils literal notranslate"><span class="pre">a</span></code> is matched and <code class="docutils literal notranslate"><span class="pre">b</span></code> is not matched, <code class="docutils literal notranslate"><span class="pre">a</span> <span class="pre">-</span> <span class="pre">b</span></code> is matched.</p>
<p>You can not specify <code class="docutils literal notranslate"><span class="pre">-</span></code> the first expression such as <code class="docutils literal notranslate"><span class="pre">-a</span></code>. It’s
syntax error.</p>
<p>Here is a simple example.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --query &#39;n_likes:&gt;=10 - content:@groonga&#39;
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         1
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         3,
#         &quot;Mroonga&quot;,
#         &quot;I also started to use Mroonga. It&#39;s also very fast! Really fast!&quot;,
#         15
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The expression matches records that <code class="docutils literal notranslate"><span class="pre">n_likes</span></code> column value is
greater than or equal to <code class="docutils literal notranslate"><span class="pre">10</span></code> and don’t contain a word <code class="docutils literal notranslate"><span class="pre">groonga</span></code> in
<code class="docutils literal notranslate"><span class="pre">content</span></code> column value.</p>
</div>
<div class="section" id="grouping">
<h3><span class="section-number">7.13.1.4.4. </span>Grouping<a class="headerlink" href="#grouping" title="Permalink to this headline">¶</a></h3>
<p>Its syntax is <code class="docutils literal notranslate"><span class="pre">(...)</span></code>. <code class="docutils literal notranslate"><span class="pre">...</span></code> is space separated expression list.</p>
<p><code class="docutils literal notranslate"><span class="pre">(...)</span></code> groups one ore more expressions and they can be
processed as an expression. <code class="docutils literal notranslate"><span class="pre">a</span> <span class="pre">b</span> <span class="pre">OR</span> <span class="pre">c</span></code> means that <code class="docutils literal notranslate"><span class="pre">a</span></code> and <code class="docutils literal notranslate"><span class="pre">b</span></code>
are matched or <code class="docutils literal notranslate"><span class="pre">c</span></code> is matched. <code class="docutils literal notranslate"><span class="pre">a</span> <span class="pre">(b</span> <span class="pre">OR</span> <span class="pre">c)</span></code> means that <code class="docutils literal notranslate"><span class="pre">a</span></code> and
one of <code class="docutils literal notranslate"><span class="pre">b</span></code> and <code class="docutils literal notranslate"><span class="pre">c</span></code> are matched.</p>
<p>Here is a simple example.</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Entries --query &#39;n_likes:&lt;5 content:@senna OR content:@fast&#39;
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         3
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         4,
#         &quot;Good-bye Senna&quot;,
#         &quot;I migrated all Senna system!&quot;,
#         3
#       ],
#       [
#         2,
#         &quot;Groonga&quot;,
#         &quot;I started to use Groonga. It&#39;s very fast!&quot;,
#         10
#       ],
#       [
#         3,
#         &quot;Mroonga&quot;,
#         &quot;I also started to use Mroonga. It&#39;s also very fast! Really fast!&quot;,
#         15
#       ]
#     ]
#   ]
# ]
select Entries --query &#39;n_likes:&lt;5 (content:@senna OR content:@fast)&#39;
# [
#   [
#     0,
#     1337566253.89858,
#     0.000355720520019531
#   ],
#   [
#     [
#       [
#         1
#       ],
#       [
#         [
#           &quot;_id&quot;,
#           &quot;UInt32&quot;
#         ],
#         [
#           &quot;_key&quot;,
#           &quot;ShortText&quot;
#         ],
#         [
#           &quot;content&quot;,
#           &quot;Text&quot;
#         ],
#         [
#           &quot;n_likes&quot;,
#           &quot;UInt32&quot;
#         ]
#       ],
#       [
#         4,
#         &quot;Good-bye Senna&quot;,
#         &quot;I migrated all Senna system!&quot;,
#         3
#       ]
#     ]
#   ]
# ]
</pre></div>
</div>
<p>The first expression doesn’t use grouping. It matches records that
<code class="docutils literal notranslate"><span class="pre">n_likes:&lt;5</span></code> and <code class="docutils literal notranslate"><span class="pre">content:&#64;senna</span></code> are matched or
<code class="docutils literal notranslate"><span class="pre">content:&#64;fast</span></code> is matched.</p>
<p>The second expression uses grouping. It matches records that
<code class="docutils literal notranslate"><span class="pre">n_likes:&lt;5</span></code> and one of <code class="docutils literal notranslate"><span class="pre">content:&#64;senna</span></code> or <code class="docutils literal notranslate"><span class="pre">content:&#64;fast</span></code>
are matched.</p>
</div>
</div>
<div class="section" id="assignment-expression">
<h2><span class="section-number">7.13.1.5. </span>Assignment expression<a class="headerlink" href="#assignment-expression" title="Permalink to this headline">¶</a></h2>
<p>This section is for advanced users. Because assignment expression is
disabled in <code class="docutils literal notranslate"><span class="pre">--query</span></code> option of <a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a> by
default. You need to specify <code class="docutils literal notranslate"><span class="pre">ALLOW_COLUMN|ALLOW_UPDATE</span></code> as
<code class="docutils literal notranslate"><span class="pre">--query_flags</span></code> option value to enable assignment expression.</p>
<p>Assignment expression in query syntax has some limitations. So you
should use <a class="reference internal" href="script_syntax.html"><span class="doc">Script syntax</span></a> instead of query syntax for
assignment.</p>
<p>There is only one syntax for assignment expression. It’s <code class="docutils literal notranslate"><span class="pre">column:=value</span></code>.</p>
<p><code class="docutils literal notranslate"><span class="pre">value</span></code> is assigend to <code class="docutils literal notranslate"><span class="pre">column</span></code>. <code class="docutils literal notranslate"><span class="pre">value</span></code> is always processed as
string in query syntax. <code class="docutils literal notranslate"><span class="pre">value</span></code> is casted to the type of <code class="docutils literal notranslate"><span class="pre">column</span></code>
automatically. It causes some limitations. For example, you cannot use
boolean literal such as <code class="docutils literal notranslate"><span class="pre">true</span></code> and <code class="docutils literal notranslate"><span class="pre">false</span></code> for <code class="docutils literal notranslate"><span class="pre">Bool</span></code> type
column. You need to use empty string for <code class="docutils literal notranslate"><span class="pre">false</span></code> but query syntax
doesn’t support <code class="docutils literal notranslate"><span class="pre">column:=</span></code> syntax.</p>
<p>See <a class="reference internal" href="../cast.html"><span class="doc">Cast</span></a> about cast.</p>
</div>
</div>


            <div class="clearer"></div>
          </div>
        </div>
      </div>
      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
        <div class="sphinxsidebarwrapper">
  <h3><a href="../../index.html">Table of Contents</a></h3>
  <ul>
<li><a class="reference internal" href="#">7.13.1. Query syntax</a><ul>
<li><a class="reference internal" href="#sample-data">7.13.1.1. Sample data</a></li>
<li><a class="reference internal" href="#escape">7.13.1.2. Escape</a></li>
<li><a class="reference internal" href="#conditional-expression">7.13.1.3. Conditional expression</a><ul>
<li><a class="reference internal" href="#full-text-search-condition">7.13.1.3.1. Full text search condition</a></li>
<li><a class="reference internal" href="#phrase-search-condition">7.13.1.3.2. Phrase search condition</a></li>
<li><a class="reference internal" href="#full-text-search-condition-with-explicit-match-column">7.13.1.3.3. Full text search condition (with explicit match column)</a></li>
<li><a class="reference internal" href="#phrase-search-condition-with-explicit-match-column">7.13.1.3.4. Phrase search condition (with explicit match column)</a></li>
<li><a class="reference internal" href="#prefix-search-condition">7.13.1.3.5. Prefix search condition</a></li>
<li><a class="reference internal" href="#suffix-search-condition">7.13.1.3.6. Suffix search condition</a></li>
<li><a class="reference internal" href="#near-search-condition">7.13.1.3.7. Near search condition</a></li>
<li><a class="reference internal" href="#near-phrase-search-condition">7.13.1.3.8. Near phrase search condition</a></li>
<li><a class="reference internal" href="#similar-search-condition">7.13.1.3.9. Similar search condition</a></li>
<li><a class="reference internal" href="#equal-condition">7.13.1.3.10. Equal condition</a></li>
<li><a class="reference internal" href="#not-equal-condition">7.13.1.3.11. Not equal condition</a></li>
<li><a class="reference internal" href="#less-than-condition">7.13.1.3.12. Less than condition</a></li>
<li><a class="reference internal" href="#greater-than-condition">7.13.1.3.13. Greater than condition</a></li>
<li><a class="reference internal" href="#less-than-or-equal-to-condition">7.13.1.3.14. Less than or equal to condition</a></li>
<li><a class="reference internal" href="#greater-than-or-equal-to-condition">7.13.1.3.15. Greater than or equal to condition</a></li>
<li><a class="reference internal" href="#regular-expression-condition">7.13.1.3.16. Regular expression condition</a></li>
</ul>
</li>
<li><a class="reference internal" href="#combined-expression">7.13.1.4. Combined expression</a><ul>
<li><a class="reference internal" href="#logical-or">7.13.1.4.1. Logical OR</a></li>
<li><a class="reference internal" href="#logical-and">7.13.1.4.2. Logical AND</a></li>
<li><a class="reference internal" href="#logical-not">7.13.1.4.3. Logical NOT</a></li>
<li><a class="reference internal" href="#grouping">7.13.1.4.4. Grouping</a></li>
</ul>
</li>
<li><a class="reference internal" href="#assignment-expression">7.13.1.5. Assignment expression</a></li>
</ul>
</li>
</ul>

  <h4>Previous topic</h4>
  <p class="topless"><a href="../grn_expr.html"
                        title="previous chapter"><span class="section-number">7.13. </span>grn_expr</a></p>
  <h4>Next topic</h4>
  <p class="topless"><a href="script_syntax.html"
                        title="next chapter"><span class="section-number">7.13.2. </span>Script syntax</a></p>
<div id="searchbox" style="display: none" role="search">
  <h3 id="searchlabel">Quick search</h3>
    <div class="searchformwrapper">
    <form class="search" action="../../search.html" method="get">
      <input type="text" name="q" aria-labelledby="searchlabel" />
      <input type="submit" value="Go" />
    </form>
    </div>
</div>
<script>$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../../genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="script_syntax.html" title="7.13.2. Script syntax"
             >next</a> |</li>
        <li class="right" >
          <a href="../grn_expr.html" title="7.13. grn_expr"
             >previous</a> |</li>
        <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v10.1.1-31-g1e46ba6 documentation</a> &#187;</li>
          <li class="nav-item nav-item-1"><a href="../../reference.html" ><span class="section-number">7. </span>Reference manual</a> &#187;</li>
          <li class="nav-item nav-item-2"><a href="../grn_expr.html" ><span class="section-number">7.13. </span>grn_expr</a> &#187;</li>
        <li class="nav-item nav-item-this"><a href=""><span class="section-number">7.13.1. </span>Query syntax</a></li> 
      </ul>
    </div>
    <div class="footer" role="contentinfo">
        &#169; Copyright 2009-2021, Brazil, Inc.
    </div>
  </body>
</html>