获取表字段:

select * 
from user_tab_columns 
where Table_Name= upper('用户表') 
order by column_name

获取表注释:

select * 
from user_tab_comments 
where Table_Name=upper('用户表') 

order by Table_Name

获取字段注释:

select * 
from user_col_comments 
where Table_Name=upper('用户表') 

order by column_name

 

注意:upper方法是必须要的,不要忽视掉了

相关文章:

  • 2021-12-23
  • 2021-05-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-20
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-11
  • 2021-07-23
相关资源
相似解决方案