Added backtick clarification when backtick char is used.

This commit is contained in:
unknown 2002-08-15 15:12:28 +10:00
parent f0a593db68
commit 7eb0ae193b

View File

@ -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. the quoting character in an identifier.
Note that if the identifier is a restricted word or contains special characters 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 @example
mysql> SELECT * FROM `select` WHERE `select`.id > 100; mysql> SELECT * FROM `select` WHERE `select`.id > 100;