我在jsp中用到了java处理sql语句,但在运行时MyEclipse时报出错误,找不到问题出在哪里,求各位的帮助!

报出的错误:java.sql.SQLException:YouhaveanerrorinyourSQLsyntax;checkthemanualthatcorrespon... 报出的错误:
java.sql.SQLException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'select tid from xuanke where username= '1001' limit 0,3' at line 1 Query: select teacher.tphone from teacher where tid = select tid from xuanke where username= '1001' limit 0,3 Parameters: []

具体的sql语句是一个子查询:
String sql = "select teacher.tphone"
+ " from teacher"
+ " where tid = select tid from xuanke where username= '1001' ";
展开
 我来答
wh猎人
推荐于2016-10-16 · TA获得超过1125个赞
知道大有可为答主
回答量:1157
采纳率:89%
帮助的人:663万
展开全部

SQL语法有错。

可以改为下面:

String sql = "select teacher.tphone"
 + " from teacher"
 + " where tid in( select tid from xuanke where username= '1001' )";
追问
恩,已经解决了!谢谢
keep5
2014-06-23 · TA获得超过298个赞
知道小有建树答主
回答量:220
采纳率:100%
帮助的人:203万
展开全部
" where tid in ( select tid from xuanke where username= '1001' ");

嵌套子查询 要带括号 再把=号 改成in
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
米多多MiDD
2014-06-23 · TA获得超过1077个赞
知道小有建树答主
回答量:562
采纳率:66%
帮助的人:230万
展开全部
String sql = "select teacher.tphone"
+ " from teacher"
+ " where tid = (select tid from xuanke where username= '1001' )";
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式