The query specifies only one term for retrieving all documents which contain the term. e.g.,
japan
The query specifies two or more terms for retrieving all
documents which contain both terms. You can insert the
and operator between the terms. e.g.,
japan and tokyo
You can ommit the and operator. Terms which is
separated by one ore more spaces is assumed to be AND query.
The query specifies two or more terms for retrieving all
documents which contain either term. You can insert the
or operator between the terms.
e.g.,
japan or tokyo
The query specifies two or more terms for retrieving all
documents which contain a first term but does't contain the
following terms. You can insert the not
operator between the terms to do NOT query. e.g.,
japan not tokyo
You can group queries by surrounding them by parentheses. The parentheses should be separated by one or more spaces. e.g.,
( japan or tokyo ) and osaka not kyoto
You can search for a phrase which consists of two or more terms
by surrounding them with double quotes like
"..." or with braces like {...}.
In our service, precision of phrase searching is not 100 %,
so it causes wrong results occasionally. e.g.,
{Bill Clinton}
The are three types of substring matching searching.
inter* (terms which begin with inter)
*text* (terms which contain text)
*net (terms which terminated
with net)
TCP/IP. Since this handling isn't complete,
you can describe TCP and IP instead of
TCP/IP, but it may cause noisy results.
and,
or or not simply as terms, you can
surround them respectively with double quotes like "..." or braces like {...}.