发布于 4年前

关于mysql错误:Subquery returns more than 1 row

【包含图片】

mysql报错:SQLSTATE[21000]: Cardinality violation: 1242 Subquery returns more than 1 row

错误的意思是指子查询结果多于一行。报错如下:

<div class="image-package"><div class="image-container" style="max-width: 700px; max-height: 124px;"><div class="image-container-fill" style="padding-bottom: 12.839999999999998%;"></div><div class="image-view" data-height="124" data-width="966">![]()</div></div><div class="image-caption"></div></div>解决方法:

以select * from table1 where table1.colums=(select columns from table2);这个sql语句为例。

1)如果是写入重复,去掉重复数据。然后写入的时候,可以加逻辑判断(php)或者外键(mysql),防止数据重复写入。

(我实际开发中遇到的就是数据重复写入的情况,在数据库查到有相同的数据两条,这不符原本的原本的业务需求)

2)在子查询条件语句加limit 1,找到一个符合条件的就可以了

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

3)在子查询前加any关键字

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


Subquery returns more than 1 row表示子查询返回了多行数据

例如:

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

解决方法

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

©2020 edoou.com   京ICP备16001874号-3