jichi
SELECT b.comments as 注释,
       a.column_name as 列名,
       a.data_type || \'(\' || a.data_length || \')\' as 数据类型,
       a.nullable as 是否为空
  FROM user_tab_columns a, user_col_comments b
 WHERE a.TABLE_NAME = \'表名\'
   and b.table_name = \'表名\'
   and a.column_name = b.column_name

 

分类:

技术点:

相关文章:

  • 2022-02-04
  • 2022-12-23
  • 2022-12-23
  • 2021-12-11
  • 2021-11-17
  • 2021-06-18
  • 2022-12-23
猜你喜欢
  • 2021-11-24
  • 2021-05-15
  • 2021-05-11
  • 2022-03-09
  • 2021-09-30
  • 2022-12-23
相关资源
相似解决方案