当前位置: 代码迷 >> 综合 >> MYSQL:Subquery returns more than 1 row
  详细解决方案

MYSQL:Subquery returns more than 1 row

热度:82   发布时间:2024-01-06 04:03:54.0
  • 问题出现
    select a.id,a.name,(select b.time from A a,B b where a.id = b.id)
    from A left join C c on

    查看日志出现如下错误:
    Subquery returns more than 1 row

  • 查找资料

    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)

  • 疑惑
    然而HQL里面并没有=(select…)的语句,遂类似将上面的、嵌套在数据库里面执行,发现返回了多条语句。

  • 尝试
    使用这句sql语句发现错误重现:select a.id,a.name,(select b.time from A a,B b where a.id = b.id) from A

  • 修改解决
    ….

  相关解决方案