java中如何对数据库执行嵌套子查询?
Stringsql="selectcook_name,cook_price,cook_imagefromcook"+"whereshop_namein(selectsho...
String sql="select cook_name,cook_price,cook_image from cook"
+ "where shop_name in(select shop_name from shop where shop_address='柳园' and shop_restaurant='1号')";
rs=ps.executeQuery(sql);
执行不了,不知道哪里出错了? 展开
+ "where shop_name in(select shop_name from shop where shop_address='柳园' and shop_restaurant='1号')";
rs=ps.executeQuery(sql);
执行不了,不知道哪里出错了? 展开
6个回答
展开全部
String sql="select cook_name,cook_price,cook_image from cook "
+ "where shop_name in(select shop_name from shop where shop_address='柳园' and shop_restaurant='1号')";
是不是cook和where之间没有空格
+ "where shop_name in(select shop_name from shop where shop_address='柳园' and shop_restaurant='1号')";
是不是cook和where之间没有空格
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
具体什么问题?
cook_image 是否 二进制 类型(比如oracle的blob,sqlserver的image)?
如果是,二进制不能这么查询的吧。
cook_image 是否 二进制 类型(比如oracle的blob,sqlserver的image)?
如果是,二进制不能这么查询的吧。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
String sql="select cook_name,cook_price,cook_image from cook where shop_name=(select shop_name from shop where shop_address='柳园' and shop_restaurant='1号')";
看看这样行不行
看看这样行不行
来自:求助得到的回答
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
报什么错呢?难道是因为你where前面没有空格的原因?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from(select * from A) where 。。。。。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询