create table memberboard (
num int not null auto_increment primary key,
email char(40) not null,
nickName char(40) not null,
subject char(200) not null,
content text not null,
regist_day char(20),
file_name char(40),
file_type char(40),
file_copied char(40)
);