有些时候,自己的sql语句在sql server中执行正常,但就是在jsp文件中行不通。很有可能使符号问题 ‘ 和 "是不一样的。注意到区别 了吗
String sql="select medals.medal,medals.event,medals.sport,athletes.code,athletes.name,athletes.country from athletes,medals where (athletes.code=medals.code) and (athletes.country=‘"+name_get+"‘)";
必须用‘
不能用‘
因为sql server执行时靠 ‘ ,不识别 "