select sum(price) as price from order where status='SUCCESS';

如果price对应的所有的值为0,那么算出来的和为null;

可以采用ifnull关键字解决

select ifnull(sum(price),0) from order where status='SUCCESS';

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-31
猜你喜欢
  • 2021-11-07
  • 2022-12-23
  • 2022-12-23
  • 2021-11-30
  • 2021-12-12
  • 2021-11-03
  • 2022-12-23
相关资源
相似解决方案