From eb100cc7460eef07b6b44ae83b678483e9074089 Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Fri, 5 Aug 2022 18:36:25 -0500 Subject: [PATCH] clarify * as an alias of % for LIKE --- docs/api.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api.rst b/docs/api.rst index 4e7c4813f..31f627bb9 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -67,8 +67,8 @@ gte :code:`>=` greater than or equal lt :code:`<` less than lte :code:`<=` less than or equal neq :code:`<>` or :code:`!=` not equal -like :code:`LIKE` LIKE operator (use * in place of %) -ilike :code:`ILIKE` ILIKE operator (use * in place of %) +like :code:`LIKE` LIKE operator (to avoid `URL encoding `_ you can use ``*`` as an alias of the percent sign ``%`` for the pattern) +ilike :code:`ILIKE` ILIKE operator (to avoid `URL encoding `_ you can use ``*`` as an alias of the percent sign ``%`` for the pattern) match :code:`~` ~ operator, see :ref:`pattern_matching` imatch :code:`~*` ~* operator, see :ref:`pattern_matching` in :code:`IN` one of a list of values, e.g. :code:`?a=in.(1,2,3)`