like-rlike.asciidoc 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. [role="xpack"]
  2. [testenv="basic"]
  3. [[sql-like-rlike-operators]]
  4. === LIKE and RLIKE Operators
  5. `LIKE` and `RLIKE` operators are commonly used to filter data based on string patterns. They usually act on a field placed on the left-hand side of
  6. the operator, but can also act on a constant (literal) expression. The right-hand side of the operator represents the pattern.
  7. Both can be used in the `WHERE` clause of the `SELECT` statement, but `LIKE` can also be used in other places, such as defining an
  8. <<sql-index-patterns, index pattern>> or across various <<sql-commands, SHOW commands>>.
  9. This section covers only the `SELECT ... WHERE ...` usage.
  10. NOTE: One significant difference between `LIKE`/`RLIKE` and the <<sql-functions-search, full-text search predicates>> is that the former
  11. act on <<sql-multi-field, exact fields>> while the latter also work on <<text, analyzed>> fields. If the field used with `LIKE`/`RLIKE` doesn't
  12. have an exact not-normalized sub-field (of <<keyword, keyword>> type) {es-sql} will not be able to run the query. If the field is either exact
  13. or has an exact sub-field, it will use it as is, or it will automatically use the exact sub-field even if it wasn't explicitly specified in the statement.
  14. [[sql-like-operator]]
  15. ==== `LIKE`
  16. .Synopsis:
  17. [source, sql]
  18. --------------------------------------------------
  19. expression <1>
  20. LIKE constant_exp <2>
  21. --------------------------------------------------
  22. <1> typically a field, or a constant expression
  23. <2> pattern
  24. *Description*: The SQL `LIKE` operator is used to compare a value to similar values using wildcard operators. There are two wildcards used in conjunction
  25. with the `LIKE` operator:
  26. * The percent sign (%)
  27. * The underscore (_)
  28. The percent sign represents zero, one or multiple characters. The underscore represents a single number or character. These symbols can be
  29. used in combinations.
  30. [source, sql]
  31. ----
  32. include-tagged::{sql-specs}/docs/docs.csv-spec[simpleLike]
  33. ----
  34. There is, also, the possibility of using an escape character if one needs to match the wildcard characters themselves. This can be done
  35. by using the `ESCAPE [escape_character]` statement after the `LIKE ...` operator:
  36. SELECT name, author FROM library WHERE name LIKE 'Dune/%' ESCAPE '/';
  37. In the example above `/` is defined as an escape character which needs to be placed before the `%` or `_` characters if one needs to
  38. match those characters in the pattern specifically. By default, there is no escape character defined.
  39. IMPORTANT: Even though `LIKE` is a valid option when searching or filtering in {es-sql}, full-text search predicates
  40. `MATCH` and `QUERY` are <<sql-like-prefer-full-text, faster and much more powerful and are the preferred alternative>>.
  41. [[sql-rlike-operator]]
  42. ==== `RLIKE`
  43. .Synopsis:
  44. [source, sql]
  45. --------------------------------------------------
  46. expression <1>
  47. RLIKE constant_exp <2>
  48. --------------------------------------------------
  49. <1> typically a field, or a constant expression
  50. <2> pattern
  51. *Description*: This operator is similar to `LIKE`, but the user is not limited to search for a string based on a fixed pattern with the percent sign (`%`)
  52. and underscore (`_`); the pattern in this case is a regular expression which allows the construction of more flexible patterns.
  53. For supported syntax, see <<regexp-syntax>>.
  54. [source, sql]
  55. ----
  56. include-tagged::{sql-specs}/docs/docs.csv-spec[simpleRLike]
  57. ----
  58. IMPORTANT: Even though `RLIKE` is a valid option when searching or filtering in {es-sql}, full-text search predicates
  59. `MATCH` and `QUERY` are <<sql-like-prefer-full-text, faster and much more powerful and are the preferred alternative>>.
  60. [[sql-like-prefer-full-text]]
  61. ==== Prefer full-text search predicates
  62. When using `LIKE`/`RLIKE`, do consider using <<sql-functions-search, full-text search predicates>> which are faster, much more powerful
  63. and offer the option of sorting by relevancy (results can be returned based on how well they matched).
  64. For example:
  65. [cols="<m,<m"]
  66. |===
  67. ^s|LIKE/RLIKE ^s|QUERY/MATCH
  68. |`foo LIKE 'bar'` |`MATCH(foo, 'bar')`
  69. |`foo LIKE 'bar' AND tar LIKE 'goo'` |`MATCH('foo^2, tar^5', 'bar goo', 'operator=and')`
  70. |`foo LIKE 'barr'` |`QUERY('foo: bar~')`
  71. |`foo LIKE 'bar' AND tar LIKE 'goo'` |`QUERY('foo: bar AND tar: goo')`
  72. |`foo RLIKE 'ba.*'` |`MATCH(foo, 'ba', 'fuzziness=AUTO:1,5')`
  73. |`foo RLIKE 'b.{1}r'` |`MATCH(foo, 'br', 'fuzziness=1')`
  74. |===