본문 바로가기
CLASS/SPRING,JSTL

#5-4 / [ legacy ] 로그인 내가 해봉거

by hingu 2024. 7. 12.
table 만듬 

create table member(
midx int(7) not null auto_increment,
mid varchar(100) not null,
mpass varchar(100) not null,
mtss enum('SKT','KT','LGT','알뜰폰') not null default 'SKT',
mphone char(11) not null,
joindate timestamp not null default current_timestamp,
primary key(midx),
unique id(mid)
);