Instead of having this:
CREATE TABLE IF NOT EXISTS `address` (
`Contact_ID` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Primary Key',
`Street Address` char(50) DEFAULT NULL,
`City` char(20) DEFAULT NULL,
`Zip Code` char(8) DEFAULT NULL,
`Country` char(20) DEFAULT NULL,
PRIMARY KEY (`Contact_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Moradas';
I Want to be able to do this instead:
CREATE TABLE IF NOT EXISTS 'address' (
'Contact_ID' smallint(6) NOT NULL DEFAULT ´0´ COMMENT ´Primary Key´,
'Street Address' char(50) DEFAULT NULL, (...)
I’m doing this on WAMPSERVER. This is because it’s really not practical at all having to do ‘shift+character’ in order to produce the ` everytime I create a table and populate it.
(Upgrading to an answer)
As explained in the manual, identifiers can be unquoted if they comprise only certain characters:
Also, note that the manual goes on to explain: