查询oracle中的特殊字段
select *from v$reserved_words
where keyword
in(
select COLUMN_NAME
from all_tab_columns
where table_name = 'TQADA01'
);
select *from v$reserved_words
where keyword
in(
select COLUMN_NAME
from all_tab_columns
where table_name = 'TQADA01'
);