Oracle报错:ORA-01747: user.table.column, table.column 或列说明无效
Posted Sam168666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle报错:ORA-01747: user.table.column, table.column 或列说明无效相关的知识,希望对你有一定的参考价值。
1、检查sql书写正确性
如果列很多,又不好确定是哪个列名使用了关键字,以下建议可供参考:
我用以下方法定位
select *
from v$reserved_words
where keyword
in(
select COLUMN_NAME
from all_tab_columns
where table_name = ‘表名大写‘ and owner=‘用户名大写‘
);
以上是关于Oracle报错:ORA-01747: user.table.column, table.column 或列说明无效的主要内容,如果未能解决你的问题,请参考以下文章
第 3 行错误:PL/SQL: ORA-01747: 无效的 user.table.column、table.column 或列规范
java.sql.SQLException: ORA-01747: user.table.column, table.column 或列说明
ORA-01747: user.table.column, table.column 或列说明无效 异常解决方法总结
ORA-01747: invalid user.table.column, table.column, or column specification
建表时使用的Oracle 保留字,(因为已经使用无法更改),插入数据时提示ORA-01747?
org.hibernate.exception.SQLGrammarException:ORA-01747:无效的 user.table.column、table.column 或列规范