首页 > 数据库技术 > 详细

mysql 子查询sum失效

时间:2021-07-26 22:59:56      阅读:45      评论:0      收藏:0      [点我收藏+]

 

代码:

// 在mysql5.6,运行正常,5.7报错
SELECT sum((
select a.num where a.status =1) ) as total FROM mes_order_product AS a LEFT JOIN mes_order AS b ON a.osn = b.osn

 

修改后的代码,增加了表明limit

// 5.6 和5.7运行都正常
SELECT sum((
select a.num from mes_order_product where a.status =1 limit 0,1)) as total FROM mes_order_product AS a LEFT JOIN mes_order AS b ON a.osn = b.osn

 

mysql 子查询sum失效

原文:https://www.cnblogs.com/wesky/p/15063054.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!