java.sql.SQLSyntaxErrorException: ORA-01747: user.table.column, table.column
错误提示如标题:
1,可能是在oracle或其他数据库中使用了保留的关键字,可以通过
select *
from v$reserved_words
where keyword
in(
select COLUMN_NAME
from all_tab_columns
where table_name = 'USERINFO' and owner='PANJIE');
原创
2012-07-27 09:29:17 ·
8533 阅读 ·
0 评论