访问中的汇总和多维数据集运算符(汇总查询)
Access 中是否有与 Rollup 和 Cube 运算符等效的操作?如果没有,如何在 Access 中编写小计和总计(汇总数据)查询?
我已经写过:
SELECT a,b FROM dumy
UNION ALL select a,sum(b) from dumy
group by a ;
输出如下图所示,或类似的内容,
但预期结果是这样的:
Are there any equivalents to the Rollup and Cube operators in Access? If not, how can I write subtotal and grand total (summary data) queries in Access?
I have written :
SELECT a,b FROM dumy
UNION ALL select a,sum(b) from dumy
group by a ;
The output is like the image below, or something similar to that,
But the expected result is this:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用交叉表查询。这将产生一行:
You can use Crosstab queries. This will produce one row:
只需要排序即可。
It just requires sorting.