1. 아래의 sql 문을 정리 하시오.
-- 댓글을 insert 하기 위한 sql 구문 2개 insert into mvc_board (bId, bName, bTitle, bContent, bGroup, bStep, bIndent) values (mvc_board_seq.nextval, ?, ?, ?, ?, ?, ? ) update mvc_board set bstep = bstep + 1 where bgroup = ? and bstep > ? -- 댓글을 고려한 select 구문 select * from mvc_board where bid = ?
2. 게시판을 1시간 이내에 짜시오.(연습 하시오)
- Im practicin;