Obsidian/Recognition/Programing/Tibero/테이블 컬럼 코멘트 조회.md

11 lines
202 B
Markdown
Raw Normal View History

2024-03-29 08:36:47 +00:00
```sql
select comments
from ALL_COL_COMMENTS a, ALL_TAB_COLUMNS b
where b.table_name = 'EAI_AWOS_RCV'
and a.table_name(+) = b.table_name
and a.column_name(+) = b.column_name
order by b.column_id
```