1개 입력시
Update [테이블] Set [필드] = '변경할내용' where [글넘버 필드] = '[라인]'
ex) Update board_table Set wr_write = 'namechange' where wr_no = '1'
2개이상 복수 변경시
Update [테이블] Set [필드] = '변경할내용', [필드] = '변경할내용' where [글넘버 필드] = '[라인]'
ex) Update board_table Set wr_write = 'namechange', wr_content = 'contentchange' where wr_no = '1'