board(게시판) 와 reply(댓글)의 Group By를 해보자! oracle 에서.. select bno, title , writer, board.reg_date from board left join reply on board.bno = reply.board_bno order by bno desc; 각 게시글의 댓글의 수 만큼 row가 생성된다. 이 row 들을 group by 해보자! select bno, title , writer, board.reg_date, rno from board left join t_reply tr on t_board.bno = tr.board_bno group by t_board.bno order by bno desc; 에러가 난다.... 왜? 다른 컬럼들이 그룹을 맺..