Special Characters in MySQL Table Name

Quote your ambiguous or “special” table names with a back tick:

INSERT INTO `e!` ...

Or better, don’t use special characters in table names to avoid such problems.

Leave a Comment