在mysql列的底部显示总和 [英] Show sum at the bottom of column in mysql

查看:52
本文介绍了在mysql列的底部显示总和的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

除了使用下面的查询在底部显示一列总和之外,还有其他方法可以使用联合查询

Instead of using the following query to display the sum of a column at the bottom, is there another method than using the Union query

  select amount 
from receipt

UNION

select SUM(amount)
from receipt

推荐答案

卷起" 应该完全执行您的操作.

WITH ROLLUP should perform exactly what you are doing.

这篇关于在mysql列的底部显示总和的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆