alter ( alter table tname add/ modify/ drop) : DDL 데이터 정의 명령어, 테이블의 속성을 추가 수정 삭제 ex) alter table 테이블이름 add 컬럼이름 datatype [ unique, primary key, foreign key, not null]; alter table tname modify grade number(1) default 1; //grade에 값을 넣지 않을 경우, 기본 값 1 alter table tname modify num number(20) not null; update ( update set): DML 데이터 조작 언어 명령어. 관계에 있는 하나 이상의 레코드를 수정 할 때 사용 ex) update tablename set 속성명 ..