[SQL] 오라클 테이블 레이아웃 만들기 (PK포함)
프로젝트 나올때마다 맨날 새로 만들어서 귀찮아서 걍 블로그에 올리기로 함 select tb.owner ,tb.table_name ,tb.comments ,tc.column_name ,tc.comments ,tcop.data_type ,tcop.data_length ,tcop.nullable ,tcop.column_id ,tcop.data_type ,tcop.data_length ,(select case when tbpk.position = 1 then 'pk' when tbpk.position > 1 then 'idx' else '' end from all_cons_columns tbpk where 1=1 and tbpk.owner like '스키마명%' and tbpk.table_name = tb.ta..