Oracle에서 테이블 구조 보기

Posted by 빵빵빵
2013/12/12 11:03 전산(컴퓨터)



desc 테이블이름;
describe 테이블이름;

근데 이건 잘 안될 수 있다....
안될때는

select * from sys.all_tab_cols where table_name = '테이블이름';

요렇게 하면 딱 나온다.




다음은 참고로 다른 DB들... 오라클만 테스트해봤다.

* Informix
select a.* from syscolumns a, systables b where (a.tabid = b.tabid) and (b.tabname = '테이블이름')

* Microsoft SQL
use '대상DB이름';
select a.* from syscolumns a, sysobjects b where (a.id = b.id) and (b.name = '테이블이름');
2013/12/12 11:03 2013/12/12 11:03

이 글에는 트랙백을 보낼 수 없습니다