oracle 导出用户下,某些表的注释

前端之家收集整理的这篇文章主要介绍了oracle 导出用户下,某些表的注释前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如果要 迁移或者复制表的话, 注释是没有带过去的,所以只好将注释给 导出来再执行一次了

select 'comment on column '||table_name||'.'||column_name||' is '||''''||comments||''';' from user_col_comments where table_name='XXXX'
原文链接:https://www.f2er.com/oracle/209596.html

猜你在找的Oracle相关文章