
December 5th, 2012, 11:11 AM
|
 |
pollyanna
|
|
Join Date: Jul 2012
Location: Germany
|
|
Hi,
normally you cannot use "ORDER" as a name, because it's a reserved word. But if you quote the name with backticks, it is permitted, because the name `order` can no longer be confused with the SQL token "ORDER".
Quoted names can include pretty much any character. See the manual.
|