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)

相关文章:

  • 2021-12-18
  • 2021-09-11
  • 2021-11-17
  • 2022-12-23
  • 2022-12-23
  • 2021-04-08
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-07-24
  • 2021-05-31
  • 2022-12-23
  • 2022-12-23
  • 2021-10-21
  • 2022-12-23
相关资源
相似解决方案