数据库查询语句遇到:Unknown column 'XXXX' in 'where clause'解决方法

数据库查询语句遇到:Unknown column ‘XXXX’ in 'where clause’解决方法

根本原因:可能是sql语句所用到的数据类型错误(int与String)弄错…

我的情况:
在网页其中的jsp页面接收html页面传来的cssn=‘L000 ’的值,需要用sql语句,查询cssn=‘L000’的那一个Tuple.

  • 下图为之前的代码:(错误的)
String cssn=request.getParameter("cssn");
String sql=" select * from Client where Cssn="+cssn; //cssn为整数类型适用
  • 错误原因:Cssn为string类型 +cssn则为整数类型 需要加‘’
  • 下图为修改过的代码:(正确的)
String cssn=request.getParameter("cssn");
String sql=" select * from Client where Cssn=' "+cssn+" ' "; //Cssn为string类型适用

解释: 因为 "+cssn+"为L000 查询时Cssn=’L000‘

你可能感兴趣的:(数据库及Mysql,Navicat使用,column,'XXXX',in)