- Mysql 5.6 버전대로 만든 버전 - 회사 신입이라 무한 대댓글 구현해보라고 해서 구현을 해봄 - 익명 게시판을 기반으로 구현 댓글 테이블 생성 # 댓글 생성 create table MS_COMMENT ( id int unsigned not null primary key, msbId int unsigned not null, parentNo int unsigned not null, groupNo int unsigned not null, depthNo int unsigned not null, orderNo int unsigned not null, comment text not null, writer varchar(40) not null, writerPw varchar(100) not null, reg..