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)

上一篇:SecureCRT和SecureFx设置中文乱码


下一篇:Oracle数据库中文乱码问题