这段话怎么报错了,书上是这么写的!

mysql> CREATA TABLE person(
-> id int not null,
-> name varchar(255)not null,
-> job varchar(255)not null,
-> primary key(id,name))
-> ENGINE=InnoDB DEFAULT CHARSET=utf8;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATA TABLE person(
id int not null,
name varchar(255)not null,
job varchar(255' at line 1

试试CREATE TABLE?
好像是你CREATE拼错了。。。拼成了CREATA了