select * from (
SELECT t1.Table_Name AS "表名称",
t3.comments AS "表说明", 
t1.Column_Name AS "字段名称",
t1.Data_Type AS "数据类型",
t1.Data_Length AS "长度",
t1.NullAble AS "是否为空",
t2.Comments AS "字段说明",
t1.Data_Default "默认值"
 
FROM cols t1 left join user_col_comments t2
on t1.Table_name=t2.Table_name and t1.Column_Name=t2.Column_Name
left join user_tab_comments t3 
on t1.Table_name=t3.Table_name 
WHERE NOT EXISTS ( SELECT t4.Object_Name FROM User_objects t4
WHERE t4.Object_Type='TABLE' 
AND t4.Temporary='Y' 
AND t4.Object_Name=t1.Table_Name )
ORDER BY t1.Table_Name, t1.Column_ID
)k where k."表名称" = 'LBSP_EC_REMAPP';

相关文章:

  • 2021-11-27
  • 2022-12-23
  • 2022-01-17
  • 2021-11-30
  • 2021-11-29
  • 2022-03-06
  • 2021-09-08
  • 2021-06-04
猜你喜欢
  • 2021-11-30
  • 2022-02-06
  • 2022-12-23
  • 2022-01-14
  • 2021-11-06
  • 2021-11-30
相关资源
相似解决方案