오라클 쿼리 팁 ◆ DB에 있는 모든 Table 이름보기 select table_name from user_tables ◆ Table의 Primary Key 찾기 select * from user_ind_columns where table_name = ''CodeTable'' ◆ 인수전달 select * from user_ind_columns where table_name = ''&1'' ===>; save key SQL> start key CodeTable ◆ 서로 연결되는 Key를 찾는 방법 select constraint_name, constraint_type, r_constraint_name from user_constraints where table_name = ''TABLE_NAME ◆ TAB..