以下の条件でtableを作成したいのですが、エラーが出ます。
構文的には合っていると思うのですが、理由がわかりません。
CREATE TABLE member ( mem_id int unsigned not null auto_increment, family_name varchar(20) not null, first_name varchar(20) not null, family_name_kana varchar(20) not null, first_name_kana varchar(20) not null, sex tinyint(1) unsigned not null, year varchar(4) not null, month varchar(2) not null, day varchar(2) not null, zip1 varchar(3) not null, zip2 varchar(4) not null, address varchar(100) not null, email varchar(255) not null, tel1 varchar(6) not null, tel2 varchar(6) not null, tel3 varchar(6) not null, contents text not null, traffic varchar(20) not null, regist_date datetime not null, update_date datetime, delete_date datetime, delete_flg tinyint(1) unsigned not null default0, primary key (mem_id), );
エラー内容 コードERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ' primary key (mem_id), )' at line 23
ご教授、よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/19 13:36
2019/09/19 13:42
2019/09/20 01:24