“子查询返回多于1行"的解决方案错误

Solution to quot;subquery returns more than 1 rowquot; error(“子查询返回多于1行的解决方案错误)
本文介绍了“子查询返回多于1行"的解决方案错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个返回多行的查询,还有另一个查询,我想在其中将条件设置为来自这些多行的值之一,所以基本上我希望子查询看起来像这样:

I have one query that returns multiple rows, and another query in which I want to set criteria to be either one of values from those multiple rows , so basicly I want the subquery to look something like this:

select * 
from table
where id= (multiple row query);

其中 multiple row query 返回多行.因此,如果这些行的值是 1、2、3,那么我想将 id 设置为 1 或 2 或 3.

Where multiple row query returns multiple rows. So if the values from those rows are 1,2,3 then I want to set id to be 1 or 2 or 3.

推荐答案

= 可以在子查询只返回 1 个值时使用.

= can be used when the subquery returns only 1 value.

当子查询返回超过 1 个值时,您将不得不使用 IN:

When subquery returns more than 1 value, you will have to use IN:

select * 
from table
where id IN (multiple row query);

例如:

SELECT *
FROM Students
WHERE Marks = (SELECT MAX(Marks) FROM Students)   --Subquery returns only 1 value

SELECT *
FROM Students
WHERE Marks IN 
      (SELECT Marks 
       FROM Students 
       ORDER BY Marks DESC
       LIMIT 10)                       --Subquery returns 10 values

这篇关于“子查询返回多于1行"的解决方案错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)