108 - [Oracle PL/SQL] Dependencies - Direct/Indirect
Direct 의존관계의 객체들 inDirect 의존관계의 객체들 코드를 통해서 Direct/Indirect 개념을 확인해보자-- 데이터 준비drop table students/create table students(student_id number, student_name varchar2(20), dob date )/ insert into students(student_id,student_name,dob) values (1,'aya ahmed','1-jan-1980');insert into students(student_id,student_name,dob) values (2,'sara mahmoud','1-jan-1980');insert into students(student_id,studen..