Given these rules, it is very easy to shoot yourself in the foot when
naming things. As a general rule, it is a good idea to stick to
alphanumeric characters from whatever character set you are using.
When an identifier is also an SQL keyword, you must enclose the
identifier in backticks:
CREATE TABLE `select` ( `table` INT NOT NULL PRIMARY KEY AUTO_INCREMENT);