大神帮看看哪里写错了,错误提示Not unique table/alias: ’mobile'

String sql;
String g=request.getParameter("find");
if(g==null){
sql="select shopping_no,shopping.mobile_no,mobile_name,brand,mobile_system,size,memory,price,snum,price*snum as shopSum from mobile,shopping where mobile.mobile_no=shopping.mobile_no and member_user='"+Saveuser.member_user+"'";
}else{
String input=request.getParameter("input");
String where="";
if(input!=""){
where="where mobile.mobile_no=shopping.mobile_no and member_user='"+Saveuser.member_user+"' and mobile_name like '%"+input+"%'";
}else if(input==""){
where="where mobile.mobile_no=shopping.mobile_no and member_user='"+Saveuser.member_user+"'";
}
sql="select shopping_no,shopping.mobile_no,mobile_name,brand,mobile_system,size,memory,price,snum,price*snum as shopSum from mobile,shopping"+where;
}

白板的微信
浏览 118回答 1
1回答

白衣非少年

SQL 语句中出现了非唯一的表或别名。检查一下表名称或字段是否有重复的。检查一下两个表中的字段是否有重复的,如果有,重点看一下查询的这些重复字段是否都带了表名称区分,如表.字段。 另外,设置断点监听一下具体执行的sql代码,这样能够更直观地看出问题。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

SQL Server