Currently training on phpMyAdmin, and tried to set up my first set of fields in the database. After I set the fields' names, types, and values, I tried to save and phpMyAdmin returned error:
Error SQL query:
CREATE TABLE `test`.`Contact ` (
`Contact` INT NOT NULL ,
`Name` VARCHAR( 50 ) NOT NULL ,
`Company` VARCHAR( 30 ) NOT NULL ,
`Email` VARCHAR( 50 ) NOT NULL
) ENGINE = MYISAM CHARACTER SET ASCII COLLATE ascii_general_ci;
MySQL said: Documentation
#1103 - Incorrect table name 'Contact '
Can anyone help to find out what the problem is?