update orders_father set ostatus=5,ofintimesys=now() where oid =
(select oid from
(SELECT oid FROM orders_father where TIMESTAMPDIFF(HOUR,odlvtime,now())>parameter and ostatus=4)
as tempTable)
;
这是代码1。
update orders_father set ostatus=5,ofintimesys=now() where oid =any
(select oid from
(SELECT oid FROM orders_father where TIMESTAMPDIFF(HOUR,odlvtime,now())>parameter and ostatus=4)
as tempTable)
;
这是代码2,在oid=后面增加了any
我的疑问是,为何代码1会出现Error Code: 1242. Subquery returns more than 1 row
这种错误,而代码2不会? 谢谢各位大神
背景:我是在存储过程中使用的...
in your first statementwhere xxx = yyy
, the right side must be a single value, not multiple values, andwill find multiple values, so
is reported The solution toError Code: 1242. Subquery returns more than 1 row
erroris to change
where xxx = yyy
intowhere xxx in(yyy)
orwhere xxx = any yyy
. These two expressions have the same meaning, but any can also be compared in other ways, such aswhere xxx > any yyy
any is quite in()