728x90
- 하나의 투플 삽입
insert into course
values (’CS-437’, ’Database Systems’, ’Comp. Sci.’, 4);
- 속성들을 명시
insert into course (course_id, title, credits, dept_name)
values (’CS-437’, ’Database Systems’, 4, ’Comp. Sci.’);
- tot_creds 가 null 값인 투플 삽입
insert into student
values (’3003’, ’Green’, ’Finance’, null);
- 모든 교수들을 tot_creds 가 0으로 student 릴레이션에 삽입
insert into student
select ID, name, dept_name, 0
from instructor
- insert into table1
select *
from table1
(select 문을 수행하면서 삽입도 한 경우)삽입하기 전에 select 문을 모두 수행해야함
반응형
'전공 공부 > 데이터베이스시스템' 카테고리의 다른 글
case 구문 (0) | 2021.01.01 |
---|---|
데이터베이스의 변경 – 갱신 (0) | 2021.01.01 |
데이터베이스의 변경 – 삭제 (0) | 2021.01.01 |
집합 비교 (0) | 2020.12.31 |
중첩 하위 질의 (0) | 2020.12.31 |