Hello ,
I have need to display Column Comment and value .
For example
create table tst_delete (col1 int);
comment on column tst_delete.col1 is 'is my column comment';
Desc table
COL1 NUMBER(38,0) Yes 1 is my column comment
Select * from tst_delete;
expected output.
is my column comment
5
Since my huge table has comment nicely defined I want to map those to values.
Any suggestions
TIA <3