/** * 문서번호: 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..