作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望table1中的数据显示为MS access 2000中的表
| contact_id | name | contact_type |
| 297 | Primary Properties Corporation | Supplier |
| 297 | Primary Properties Corporation | Prospect |
| 297 | Primary Properties Corporation | Customer |
| 298 | San Miguel Corporation | Prospect |
| 301 | Sulpicio Lines | Supplier |
我希望它返回:
| contact_id | name | contact_type
| 297 | Primary Properties Corporation | Supplier, Prospect, Customer |
| 298 | San Miguel Corporation | Prospect |
| 301 | Sulpicio Lines | Supplier |
我有一些方法,比如在 sql 中使用 group concat、xml_path,但它在 ms access 中不起作用。
请指导我。
最佳答案
这是一种方法:
打开 Visual Basic 编辑器...工具 --> 宏 --> Visual Basic 编辑器(或 AltF11 )
插入一个模块并粘贴到这个 UDF 中:
'Concat returns a comma-seperated list of items
Public Function Concat (CategoryCol As String, _
ItemCol As String) As String
Static LastCategory As String
Static ItemList As String
If CategoryCol = LastCategory Then
ItemList = ItemList & ", " & ItemCol
Else
LastCategory = CategoryCol
ItemList = ItemCol
End If
Concat = ItemList
End Function
保存项目并关闭 VB 编辑器
在查询下,在设计 View 中创建一个新查询。
切换到SQL View 。
粘贴此 SQL:
SELECT
contact_id,
name,
LAST (Concat (contact_id, contact_type)) AS [contact_type]
FROM
table1
GROUP BY
contact_id,
name
ORDER BY
contact_id
运行查询(按红色感叹号或只选择数据 TableView )。
完成!
关于sql - 如何在 MS-Access 中将 3 条记录分组为 1 行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8093262/
我是一名优秀的程序员,十分优秀!