데이터베이스 생성

우선 회원가입과 로그인 기능을 하기 위해 필요한 데이터베이스를 생성해 봅시다.
데이터베이스의 이름은 myProject로 생성해 주세요.
명령문은 다들 아실거라고 생각합니다.

create database myProject;

데이터베이스 생성을 했으니 이제 회원정보를 담을 테이블을 생성해 봅시다.

create table member(
no int not null auto_increment,
memberId varchar(20) not null comment '아이디',
name varchar(20) not null comment '이름',
nickname varchar(20) not null comment '닉네임',
password varchar(50) not null comment '비밀번호',
eMail varchar(40) not null comment '이메일주소',
birthDay varchar(20) not null comment '생일',
primary key(`no`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;

그럼 이번 강좌는 여기 까지 하고 다음 강좌를 작성 하겠습니다.
다음 강좌는 데이터베이스 접속 파일을 작성해 보겠습니다.