◆ tbl_reply 한줄 댓글 테이블 생성
페이지 정보
작성자 관리자 작성일 24-07-31 15:58 조회 52 댓글 0본문
create table tbl_reply (
rno int not null auto_increment,
bno int not null default 0,
replytext varchar(1000) not null,
replyer varchar(50) not null,
regdate varchar(20) default '',
primary key(rno)
);
== 외래키 (foreign key) 추가 ==
alter table tbl_reply add constraint fk_board foreign key (bno) references tbl_board (bno);
댓글의 테이블은 tbl_reply라는 이름으로 생성하고, 1:N의 관계이므로, 댓글쪽에는 원래 게시물의 번호를 보관하는 bno 칼럼이 존재
외래키를 추가 하는 이유는 데이터 무결성이 가장 큰 이유이다.
댓글목록 0
등록된 댓글이 없습니다.