albert's blog
2011/01/18
How to Query Columns' Comments from Database
Problem
I would like retrieve comments from each column. The database is Oracle.
Solution
select
table_name
,
column_name
, comments
from
user_col_comments
where
table_name
like
'NIGT%'
;
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment