데이터 수정
데이터 수정
형식
update 테이블이름 set 항목=값, 항목=값, ... [where 조건];예제
update product set price = price + 100;update product set price = price * 0.95 where expire - sysdate between 0 and 30;Last updated
update 테이블이름 set 항목=값, 항목=값, ... [where 조건];update product set price = price + 100;update product set price = price * 0.95 where expire - sysdate between 0 and 30;Last updated