회원 테이블 설계 create table member( id varchar(20) not null, pw varchar(50) not null, name varchar(10) not null, primary key(id) ); insert into member values('smhrd4','smhrd4','퓨어맨'); create table board2( idx int not null auto_increment, title varchar(100) not null, writer varchar(10) not null, indate datetime default now(), contents varchar(2000) not null, id varchar(20) not null, cnt int, primary k..