原因是内层select语句带有limit子句。

原:

update stu_score_childen A  set  A.fScore='-1' where  A.fID in (select B.fID from stu_score_childen B limit 0,50 )

更改后的

update stu_score_childen A  set  A.fScore='-1' where  A.fID in (select C.fID from (select B.fID from stu_score_childen B limit 0,50 ) C)

绕过带有limit的select就可以了

相关文章:

  • 2021-10-03
  • 2021-07-30
  • 2022-12-23
  • 2021-10-25
  • 2021-09-29
  • 2021-09-29
  • 2021-10-16
猜你喜欢
  • 2021-07-14
  • 2022-12-23
  • 2022-12-23
  • 2022-02-23
  • 2022-12-23
相关资源
相似解决方案