summaryrefslogtreecommitdiff
path: root/Docs
diff options
context:
space:
mode:
authorunknown <paul@teton.kitebird.com>2001-09-13 18:24:44 -0500
committerunknown <paul@teton.kitebird.com>2001-09-13 18:24:44 -0500
commit87000f6e7a493f0f423c54388fc4fb3235f3d80d (patch)
treebdd0eb5e732e4b90e3b672acdc15a619d44dc604 /Docs
parent623a6e551afaebc3038c29f2bcee930d2db7375e (diff)
parentd58666b216fff373670e846157e36c4ed39ffefc (diff)
downloadmariadb-git-87000f6e7a493f0f423c54388fc4fb3235f3d80d.tar.gz
Merge paul@work.mysql.com:/home/bk/mysql-4.0
into teton.kitebird.com:/home/paul/mysql-4.0 Docs/manual.texi: Auto merged
Diffstat (limited to 'Docs')
-rw-r--r--Docs/manual.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi
index afc5ad0a05d..76bc6eab771 100644
--- a/Docs/manual.texi
+++ b/Docs/manual.texi
@@ -44737,7 +44737,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"}.