--查询数据库关键字
select * from v$reserved_words;
----查询指定表中是否有关键字
select * from v$reserved_words where keyword in(select COLUMN_NAME
from all_tab_columns where table_name = upper('k_msg') and owner='DBO_MTOA_XJICPA');
select * from v$reserved_words where keyword in(select COLUMN_NAME
from all_tab_columns where table_name = upper('k_msg'));