공부/sql

테이블 설명 확인

hansuya 2025. 5. 7. 13:43

select *
from all_tab_comments
where 1=1
--and table_name like '%rsp%'
and table_type like '%TABLE%'
order by table_name
;

또는

select *
from all_tab_comments
where table_name like '%CBS%'
;

'공부 > sql' 카테고리의 다른 글

PIVOT, UNPIVOT  (0) 2025.05.08
LISTAGG  (0) 2025.05.08
힌트(Oracle Hint)란 무엇일까?  (0) 2025.05.08
SUM(1) vs COUNT(*)  (0) 2025.05.07
RDBMS SQL WITH 사용법(2024.11.20)  (0) 2025.03.10