
MySQL/MySQL icia 27일차
MySQL 테이블(table) 데이터 수정하는법 - Update
Update MySQL에서는 update 문을 이용해서 레코드의 내용을 수정가능하다. update 문은 해당 테이블에서 where 절의 조건을 만족하는 레코드의 값만 수정한다. drop table if exists board3; create table board3( id bigint, -- 글번호 board3_writer varchar(20) not null, -- 작성자 board3_contents varchar(500), -- 내용 constraint pk_board3 primary key(id) ); drop table if exists comment3; create table comment3( id bigint, -- 글번호 comment3_writer varchar(20) not null, --..