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 속성명 = 데이터 where 조건;
update 학생 set 학번 =1 where 이름 = '이름이름'; //이름이 이름이름인 사람의 학번을 1로 수정
update tname set colname = 123 where score >=90;
insert into ( insert into tname values() ): 테이블에 새로운 자료를 수정 할 때 사용
ex) insert into tname (colname,colname) values ('sdf',123);
insert into 학생 (이름, 학번, 전화번호 ) values ('name', 2020,010010);
delete : 데이터 삭제 시
ex)
delete from student where name =' kim';
'정보처리기사' 카테고리의 다른 글
정보처리기사 실기 정리 (1) | 2023.10.02 |
---|---|
정보처리기사 실기 정리 (0) | 2023.10.01 |
정보처리기사 실기 정리 (0) | 2023.09.28 |
정보처리기사 (0) | 2023.09.24 |
정보처리기사 자주 나오는 (0) | 2023.09.24 |