select * from user_tables; --当前用户的表 的表结构信息
select * from all_tables; --所有用户的表 的表结构信息
select * from dba_tables; --包括系统表 的表结构信息
select * from user_tab_columns where Table_Name='TREE'; --当前用户的表的列信息
select * from all_tab_columns where Table_Name='TREE'; --所有用户的表的表的列信息
select * from dba_tab_columns where Table_Name='TREE'; --包括系统表的表的列信息
select * from user_tab_comments ;--获取表注释
select * from user_col_comments ;--获取字段注释
select * from all_tables; --所有用户的表 的表结构信息
select * from dba_tables; --包括系统表 的表结构信息
select * from user_tab_columns where Table_Name='TREE'; --当前用户的表的列信息
select * from all_tab_columns where Table_Name='TREE'; --所有用户的表的表的列信息
select * from dba_tab_columns where Table_Name='TREE'; --包括系统表的表的列信息
select * from user_tab_comments ;--获取表注释
select * from user_col_comments ;--获取字段注释