Full-text search

Use SQL commands for full-text search. The SQL plugin supports a subset of the full-text queries available in OpenSearch.

To learn about full-text queries in OpenSearch, see Full-text queries.

Match

To search for text in a single field, use MATCHQUERY or MATCH_QUERY functions.

Pass in your search query and the field name that you want to search against.

  1. SELECT account_number, address
  2. FROM accounts
  3. WHERE MATCH_QUERY(address, 'Holmes')

Alternate syntax:

  1. SELECT account_number, address
  2. FROM accounts
  3. WHERE address = MATCH_QUERY('Holmes')
account_numberaddress
1880 Holmes Lane

Multi match

To search for text in multiple fields, use MULTI_MATCH, MULTIMATCH, or MULTIMATCHQUERY functions.

For example, search for Dale in either the firstname or lastname fields:

  1. SELECT firstname, lastname
  2. FROM accounts
  3. WHERE MULTI_MATCH('query'='Dale', 'fields'='*name')
firstnamelastname
DaleAdams

Query string

To split text based on operators, use the QUERY function.

  1. SELECT account_number, address
  2. FROM accounts
  3. WHERE QUERY('address:Lane OR address:Street')
account_numberaddress
1880 Holmes Lane
6671 Bristol Street
13789 Madison Street

The QUERY function supports logical connectives, wildcard, regex, and proximity search.

Match phrase

To search for exact phrases, use MATCHPHRASE, MATCH_PHRASE, or MATCHPHRASEQUERY functions.

  1. SELECT account_number, address
  2. FROM accounts
  3. WHERE MATCH_PHRASE(address, '880 Holmes Lane')
account_numberaddress
1880 Holmes Lane

Score query

To return a relevance score along with every matching document, use SCORE, SCOREQUERY, or SCORE_QUERY functions.

You need to pass in two arguments. The first is the MATCH_QUERY expression. The second is an optional floating point number to boost the score (default value is 1.0).

  1. SELECT account_number, address, _score
  2. FROM accounts
  3. WHERE SCORE(MATCH_QUERY(address, 'Lane'), 0.5) OR
  4. SCORE(MATCH_QUERY(address, 'Street'), 100)
  5. ORDER BY _score
account_numberaddressscore
1880 Holmes Lane0.5
6671 Bristol Street100
13789 Madison Street100