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

解决办法:

 select *
from v$reserved_words 
where keyword
in(
select COLUMN_NAME
from all_tab_columns
where table_name = '表名大写' and owner='用户名大写'
); 
 

用以上语句查询表中字段是否有关键字

猜你喜欢

转载自blog.csdn.net/qq_39564710/article/details/78591596