今現在の状況
Mysqal のカラム、テーブルに日本語を使うとエラーになるのですが、
表示がされなくって困っております。
発生部分の箇所
create table mysql_task(
id int(11) primary key auto_increment,
名前 varchar(255) NOT NULL,
マイナンバー varchar(20) DEFAULT ,
生年月日 date NOT NULL,
住所1 varchar(255) NOT NULL,
住所2 varchar(255) NOT NULL,
契約形態 varchar(255) NOT NULL,
入社年月日 date DEFAULT ,
退社年月日 date DEFAULT ,
データ作成年月日 timestamp not null default current_timestamp,
データ更新年月日 timestamp not null default current_timestamp on update current_timestamp
);
試したこと
create table mysql_task(
id int(11) primary key auto_increment,
名前
varchar(255) NOT NULL,
マイナンバー
varchar(20) DEFAULT ,
生年月日
date NOT NULL,
住所1
varchar(255) NOT NULL,
住所2
varchar(255) NOT NULL,
契約形態
varchar(255) NOT NULL,
入社年月日
date DEFAULT ,
退社年月日
date DEFAULT ,
データ作成年月日
timestamp not null default current_timestamp,
データ更新年月日
timestamp not null default current_timestamp on update current_timestamp
);
create table mysql_task(
id int(11) primary key auto_increment,
'名前' varchar(255) NOT NULL,
'マイナンバー' varchar(20) DEFAULT ,
'生年月日' date NOT NULL,
'住所1' varchar(255) NOT NULL,
'住所2' varchar(255) NOT NULL,
'契約形態' varchar(255) NOT NULL,
'入社年月日' date DEFAULT ,
'退社年月日' date DEFAULT ,
'データ作成年月日' timestamp not null default current_timestamp,
'データ更新年月日' timestamp not null default current_timestamp on update current_timestamp
);
日本語の部分を' or ` で囲むのかと思い試してみましたが上手く表示されませんでした。
回答2件
あなたの回答
tips
プレビュー