ORA-01747: user.table.column, table.column 或列说明无效

ORA-01747: user.table.column, table.column 或列说明无效

系统数据库从mysql移植到oracle 10后,碰到一个如下问题,异常如下:

Sql代码
  1. java.sql.SQLException: ORA-01747:  user . table . column table . column  或列说明无效  
java.sql.SQLException: ORA-01747: user.table.column, table.column 或列说明无效

 改问题是因为使用到了oracle的关键字所致,查找发现,表中有个字段名为order,在mysql中并不是关键字,而在oracle中则是关键字。

 

如何查询oracle中的关键字,sqlplus下执行:

Sql代码
  1. select  *  from  v$reserved_words;  
select * from v$reserved_words;

 oracle中的关键字便一目了然了。

 

你可能感兴趣的:(oracle,sql,mysql)