私はMySQL 5.0.95を使用しています。
"position"というテーブルを作成したいと思います。
以下は、私のクエリは、次のとおりです。MySQL - エラーを示すポジションテーブルを作成
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 'position(
position_ID int(3) not null auto_increment,
position_name varchar(30) ' at line 1
私が間違っているのは何:
create table position(
position_ID int(3) not null auto_increment,
position_name varchar(30) not null,
primary key(position_ID)
)ENGINE=INNODB;
は、しかし、私は以下のエラーを取得しますか?
誰かが私を助けることができますか?