ms-access 中有 group_concat 函数吗?

is there a group_concat function in ms-access?(ms-access 中有 group_concat 函数吗?)
本文介绍了ms-access 中有 group_concat 函数吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

ms-access 中是否有 group_concat 函数或类似的东西?

is there a group_concat function in ms-access or something similar?

推荐答案

你应该问问自己是否需要一个通用的解决方案 (另一个是 Allen Browne 的),或者如果您仅出于当前目的需要它.如果您真的只需要它一次,请使用简单的方法.

You should ask yourself if you need a generic solution (another is by Allen Browne) or if you need it just for the present purpose. If you really only need it this once, do it the easy way.

附带说明,在 VBA 代码中连接列表时,利用长期访问专家 Trevor Best 教给我的技巧,那就是在每个值的开头粘贴分隔符,然后使用 Mid()把它剥掉.而不是在你的循环中通过子记录:

On a side note, when concatenating lists in VBA code, take advantage of a trick taught to me by long-time Access guru Trevor Best, and that's to stick the delimiter at the beginning of every value and then use Mid() to strip it off. Instead of this inside your loop through the child records:

  If Len(strOutput) = 0 Then
     strOutput = NewValue
  Else
     strOutput = strOutput & ", " & NewValue
  End If

...在循环中使用它:

...use this inside the loop:

  strOutput = strOutput & ", " & NewValue

...然后当你退出循环时,去掉前导分隔符:

...and then when you exit the loop, strip off the leading delimiter:

  strOutput = Mid(strOutput, 3)

这对所有地方都有影响,并简化了在大量上下文中进行连接的代码.

This has implications all over the place and simplifies code for concatenation in a whole host of contexts.

这篇关于ms-access 中有 group_concat 函数吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Can#39;t Create Entity Data Model - using MySql and EF6(无法创建实体数据模型 - 使用 MySql 和 EF6)
MySQL select with CONCAT condition(MySQL选择与CONCAT条件)
Capitalize first letter of each word, in existing table(将现有表格中每个单词的首字母大写)
How to retrieve SQL result column value using column name in Python?(如何在 Python 中使用列名检索 SQL 结果列值?)
Update row with data from another row in the same table(使用同一表中另一行的数据更新行)
Exporting results of a Mysql query to excel?(将 Mysql 查询的结果导出到 excel?)