diff options
author | paul@teton.kitebird.com <> | 2001-09-13 18:19:38 -0500 |
---|---|---|
committer | paul@teton.kitebird.com <> | 2001-09-13 18:19:38 -0500 |
commit | 88627838aeaca026cb760c6de78893a090db4450 (patch) | |
tree | 23a2d20e8570989eda4fdcbb465ddb025598f401 | |
parent | 76567404e40a395e2a281463d30d2d361685bd84 (diff) | |
download | mariadb-git-88627838aeaca026cb760c6de78893a090db4450.tar.gz |
manual.texi fix incorrect example (no function named INDEX)
-rw-r--r-- | Docs/manual.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index 7e9b59c0341..ba72cf74090 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -44728,7 +44728,7 @@ By default, MySQL searches are case-insensitive (although there are some character sets that are never case insensitive, such as @code{czech}). That means that if you search with @code{col_name LIKE 'a%'}, you will get all column values that start with @code{A} or @code{a}. If you want to make this -search case-sensitive, use something like @code{INDEX(col_name, "A")=0} to +search case-sensitive, use something like @code{INSTR(col_name, "A")=1} to check a prefix. Or use @code{STRCMP(col_name, "A") = 0} if the column value must be exactly @code{"A"}. |