[게시판 만들기] mapper.xml
board2mapper insert into tbl_board (title, content,writer) values(#{title}, #{content},#{writer}); select * from( select @rownum:=@rownum+1 as rownum, b.* from(select @rownum:=0) as tmp, tbl_board as b where title like concat('%',#{keyword},'%') where content like concat('%',#{keyword},'%') where writer like concat('%',#{keyword},'%') where title like concat('%',#{keyword},'%') or content like c..