상황 - 게시글 상세 페이지에서 댓글을 쓰는 상황 댓글 테이블 정의 create table comment_table( id bigint primary key auto_increment, commentWriter varchar(50), commentContents varchar(200), boardId bigint, commentCreatedTime datetime default now(), constraint fk_comment_table foreign key (boardId) references board_table(id) on delete cascade ); boardId 는 board_table 의 id를 참조한다. 게시글이 지워지면 댓글도 지워주게 하기 위해서 on delete cascade 를 ..