首页 > 代码库 > 查看Oracle表中存在的关键字

查看Oracle表中存在的关键字

select *

from v$reserved_words 
where keyword

in(

select COLUMN_NAME

from all_tab_columns

where table_name = JC_GUESTBOOKMODEL_ITEM and owner=JLWCM

);

查看Oracle表中存在的关键字