您的位置:首页 > 其它

[org.hibernate.util.JDBCExceptionReporter] - ORA-01747: user.table.column, table.column 或列说明无效

2017-11-21 13:29 357 查看
解决办法:

 select *

from v$reserved_words 

where keyword

in(

select COLUMN_NAME

from all_tab_columns

where table_name = '表名大写' and owner='用户名大写'

); 
 

用以上语句查询表中字段是否有关键字
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: