테이블 만들기 ▶ create table table_name ( column_name1 column_type1 [not null], column_name2 column_type2 [not null], primary key column_name ); 이제는 실질적으로 테이블을 생성해보자 -> create table member ( num int(4) default '0' not null auto_increment, name char(8) not null, id char(10) not null, pwd char(30) not null, email char(50) default '', home char(80) default '', phone char(15) default '', birth char(15) de..