전공 공부/데이터베이스시스템
데이터베이스의 변경 – 삽입
- 하나의 투플 삽입 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 fro..
2021. 1. 1. 19:25