From 7eb0ae193bb59e98e9a0b24b037e2cc13c2c80f7 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 15 Aug 2002 15:12:28 +1000 Subject: [PATCH] Added backtick clarification when backtick char is used. --- Docs/manual.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/manual.texi b/Docs/manual.texi index 30a750f4ced..71e6e9b9eed 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -28370,7 +28370,7 @@ Note that in addition to the above, you can't have ASCII(0) or ASCII(255) or the quoting character in an identifier. Note that if the identifier is a restricted word or contains special characters -you must always quote it with @code{`} when you use it: +you must always quote it with a @code{`} (backtick) when you use it: @example mysql> SELECT * FROM `select` WHERE `select`.id > 100;