데이터베이스/Oracle
Oracle 테이블 데이터 수정
왕왕왕왕
2015. 8. 20. 15:31
update 테이블명 set 컬럼명 = 수정할 값1, 컬럼명 = 수정할 값2 ..... where 조건
UPDATE test set id=4, username='king88' where id = '1';