DataBase/Oracle2011. 6. 2. 11:47

해당 테이블의 컬럼 속성이 무엇인지 확인 후 해당 타입일 때 특정 조건 작업할때 유용



 테이블 조회
select * from user_objects where object_type='TABLE'


 컬럼 조회
select * from cols where table_name='테이블 이름'

Posted by penguindori