1.表基本信息(Table) select * from user_tables t, user_tab_comments c where c.table_name = t.table_name and t.table_name = 'YOUR_TAB_NAME' 2.表的列信息(Column) select * from user_tab_columns t, user_col_comments c where t.table_name = c.table_name and t.column_…