ORA-00904:Invalididentifier解决方案(Oracle字段名区分大小写的坑)问题描述我在使用jpa或者mybatis集成Oracle的时候查询where的时候发现它一直出现:java.sql.SQLSyntaxErrorException:ORA-00904:“USER0_”。"PWD":invalididentifier下面是问题代码:@Testvoidtest01(){Useruser=userDao.findByPwd("ccat");System.out.println("用户="+用户);}
