Oracle comment乱码
来自ling
select 'COMMENT ON COLUMN '||t.table_name||'.'||t.column_name||' IS ' || '''' ||t.comments||''';'
from user_col_comments t
where t.table_name not like 'BIN%'
and length( t.comments)>0;
select 'COMMENT ON COLUMN '||t.table_name||'.'||t.column_name||' IS ' || '''' ||t.comments||''';'
from user_col_comments t
where t.table_name not like 'BIN%'
and length( t.comments)>0;