select 'DELETE FROM ' || a.table_name || '; --' || a.comments from user_tab_comments a where a.table_type in('TABLE') and table_name not like 'SYS_%'
本文提供了一个SQL脚本,用于从用户拥有的表中删除特定的注释,确保了数据库表的注释管理更加灵活和可控。
select 'DELETE FROM ' || a.table_name || '; --' || a.comments from user_tab_comments a where a.table_type in('TABLE') and table_name not like 'SYS_%'

被折叠的 条评论
为什么被折叠?