oracle 에서 테이블 목록 또는 테이블 컬럼 확인 쿼리

/**
* 문서번호: nabiro_201108151415
* 검색어: nabiro, oracle, 오라클, 테이블 목록, table list, query, 쿼리, 컬럼, column
* 출처: 
* 참조:
**/

테이블 목록 확인 쿼리


select object_name from user_objects where object_type = ‘TABLE’;

select object_name from user_objects where object_type = ‘SEQUENCE’;


또는 


select * from tab;


사용자 테이블 리스트 보기

select table_name from user_tables;


테이블 제약 조건 보기

select table_name, constraint_name, constraint_type 

from user_constraints

where table_name=’EMP3’;


테이블 목록 조회

select object_name from user_objects where object_type=’TABLE’;


컬럼 조회

select column_name, data_type, data_length, data_precision, data_scale, nullable from cols where table_name=’테이블명’; 

댓글

Designed by JB FACTORY