: create table testboard(
: no int(5) default '0' not null auto_increment,
: num int(5) default '0' not null, <-------추가
: idx int(5) default '0' not null,
: usrtitle tinytext,
: contents text,
: replyon int(1) default '0' not null,
: replyto int(5) default '0' not null,
: replyfrom int(5) default '0' not null, <-------추가
: replydepth int(5) default '0' not null,
: hit int(5) default'0' not null,
: usrname varchar(12),
: usrpasswd char(28),
: usremail varchar(80),
: filluptime int(11) default '0' not null,
: primary key (no)
: )
:
: testboard라는 테이블에서요 "<----추가"라는 부분을 추가 할려면
: 어떻게 추가 해야 하나요?
: 그러니깐 추가 부분만 빼고 testboard테이블을 작성하였습니다.
: 근데 빼먹은 부분이 있어서 추가 부분을 추가할려고 하는데
: 어떻게 해야하나요?
: 상세하게 알려줬으면 좋겠습니다.
: 그리고 불필요한 부분을 지울려면 어떻게 하는지도 알려주세요.
:
: --
: 점점 알아가는 이 기쁨!!
alter 라는 명령어를 이용해요...--이 곳에 서명을 적어주십시오.
이관형