오라클 게시판 기본 활용 쿼리 -list selct no, title, writer, writedate,hit from board order by no desc -view select no, title, content, writer, writedate, hit from board where no=2 -write insert into board(no, title, content, writer) values (board_seq.nextval, '제목'. '내용', '작성자') -update update board set title='제목' , content='내용', writer='작성자' where no=2 -delete delete from board where no=2
Programming
2017. 5. 19.