Oracle
 sql >> Database >  >> RDS >> Oracle

Come recuperare i commenti da un Oracle 11g utilizzando JDBC?

Puoi eseguire questa query per ottenere il commento della tabella.

select comments from user_tab_comments where table_name = 'T';

Se vuoi ricevere il commento della colonna:

select comments from user_col_comments where table_name = 'T';