码迷,mamicode.com
首页 > 数据库 > 详细

解决"Subquery returns more than 1 row"sql查询错误

时间:2014-11-09 09:43:25      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   sp   数据   div   art   

http://blog.csdn.net/c517984604/article/details/7052186 [Err] 1242 - Subquery returns more than 1 row   --表示子查询返回了多行数据

例如:

select * from table1 where table1.colums=(select columns from table2)

解决方法

1,select * from table1 where column=any(select columns  from table2)

2,select * from table1 where column in(select columns  from table2);

3,select * from table1 a where exists 
(select columns from tableb2 b
where b.column=a.column
);
 

解决"Subquery returns more than 1 row"sql查询错误

标签:style   blog   http   color   ar   sp   数据   div   art   

原文地址:http://www.cnblogs.com/svennee/p/4084434.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!