[Groonga-commit] groonga/groonga [master] doc query syntax: describes comparison conditions

Back to archive index

null+****@clear***** null+****@clear*****
2012年 6月 12日 (火) 12:50:37 JST


Kouhei Sutou	2012-06-12 12:50:37 +0900 (Tue, 12 Jun 2012)

  New Revision: 900c24657c856b1118f93d94dcfafd2f640535db

  Log:
    doc query syntax: describes comparison conditions

  Modified files:
    doc/source/spec/query_syntax.txt

  Modified: doc/source/spec/query_syntax.txt (+124 -18)
===================================================================
--- doc/source/spec/query_syntax.txt    2012-06-12 12:19:49 +0900 (37c1dc9)
+++ doc/source/spec/query_syntax.txt    2012-06-12 12:50:37 +0900 (324d6e1)
@@ -20,7 +20,7 @@ condition. ``Combinded expression`` consists of one or more
 ``conditional expression`` or ``combined expression``.
 
 Sample data
--------------
+-----------
 
 Here are a schema definition and sample data to show usage.
 
@@ -129,35 +129,141 @@ The expression matches records that contain a phrase ``I started`` in
 ``I`` and ``started`` aren't adjacent. ``content`` column is the
 default match column.
 
-``カラム名:値``
+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 exmaple.
+
+.. groonga-command
+.. include:: ../example/spec/query_syntax/simple_equal.log
+.. select Entries --query _key:Groonga
+
+The expression matches records that ``_key`` column value is
+equal to ``Groonga`` from ``Entries`` table.
+
+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 exmaple.
+
+.. groonga-command
+.. include:: ../example/spec/query_syntax/simple_not_equal.log
+.. select Entries --query _key:!Groonga
+
+The expression matches records that ``_key`` column value is not equal
+to ``Groonga`` from ``Entries`` table.
+
+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 exmaple.
+
+.. groonga-command
+.. include:: ../example/spec/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`` from ``Entries`` table.
 
-比較条件( ``カラム値 < 値`` )
+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 exmaple.
+
+.. groonga-command
+.. include:: ../example/spec/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`` from ``Entries`` table.
+
+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 exmaple.
+
+.. groonga-command
+.. include:: ../example/spec/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`` from ``Entries`` table.
+
+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 exmaple.
+
+.. groonga-command
+.. include:: ../example/spec/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`` from ``Entries`` table.
 
 ``カラム名:@文字列``
 ^^^^^^^^^^^^^^^^^^^^




Groonga-commit メーリングリストの案内
Back to archive index