sql – 在Access中连接记录和GROUP BY

前端之家收集整理的这篇文章主要介绍了sql – 在Access中连接记录和GROUP BY前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这样一张桌子:
title               part                   desc
Blah This           1                      This begins the
Blah This           2                      example table.
Some Record         1                      Hello
Another             1                      This text extends a bit
Another             2                      further so it is in
Another             3                      another record in the
Another             4                      table

在Access中,我希望构建一个查询/ sql到GROUP BY标题并连接desc字段,所以它看起来像这样:

title              desc
Blah This          This begins the example table.
Some Record        Hello
Another            This text extends a bit further so it is in another record in the table

如何只用sql(没有VBA /脚本)来完成? FOR XML PATH似乎在Access中不起作用,只在sql Server中起作用.我在How to improve efficiency of this query & VBA?尝试了VBA,但它太慢了.

或者是否有一个可以使用的函数查询已经打开时不会连续运行?

解决方法

Access中没有Group_Concat:/.可能没有排除VBA的解决方案.
这是一个可能的: Concatenating Rows through a query
原文链接:https://www.f2er.com/mssql/77029.html

猜你在找的MsSQL相关文章