기초공사 (html,css,javascript)
오라클 INSERT, UPDATE, DELETE 문법 본문
//사이트
https://mjn5027.tistory.com/93
안되었던 이유는 where앞에 콤마를 붙였었다.
모를때는 sqldeveloper에 값을 넣어서 확인해보기
update t_board
set
reguser='박희정',
btitle='제목',
content='제목입니다.',
regdate='12.12.24'
where id=1
아래로 표기
update.jsp
//쿼리실행
stmt.executeUpdate(String.format(
"update t_board set reguser='%s', btitle='%s', " +
"content='%s', regdate='%s' where id=%d",
reguser, btitle, content, curTime, id));
'SQL' 카테고리의 다른 글
무결점위배-index / unique (1) | 2023.11.17 |
---|