具有计数字段的可更新记录集 - MS Access
我不是 SQL 专家。也许我在这里尝试做的事情根本不可能实现。
我正在尝试获取一个可更新的记录集,其中包含一个聚合函数结果的字段。
我正在寻找这样的东西:
SELECT Contact.*, Count(OrderID) as CountOfOrders
FROM Contact INNER JOIN Order ON Order.ContactID = Contact.ContactID
WHERE ContactID = 1
I'm not an SQL Expert. Maybe what I'm trying to do here isn't even possible.
I'm trying to get an updateable recordset that includes a field that is the result of an aggregate function.
I'm looking for something like this:
SELECT Contact.*, Count(OrderID) as CountOfOrders
FROM Contact INNER JOIN Order ON Order.ContactID = Contact.ContactID
WHERE ContactID = 1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当使用 MSDataShape OLE DE 提供程序和 Jet(或 ACE)的 OLE DB 提供程序时,确实可以创建可更新的 ADO 记录集并
APPEND
基于一个集合函数,例如COUNT()
。生成的 SQL 式代码看起来更像是这样:这是一个简短的“概念证明”:将以下内容粘贴到任何 VBA 模块中(例如使用 Excel),无需引用,在临时目录中创建一个新的 .mdb,创建包含数据的表,为了证明记录集是可更新的,
ContactName
值已更改,并且记录集重新打开以显示它确实已更改:When using the MSDataShape OLE DE provider and the OLE DB provider for Jet (or ACE) then it is indeed possible to create an updateable ADO recordset and
APPEND
a computed column based on a set function such asCOUNT()
. The resulting SQL-esque code would look more like this:Here's a brief 'proof of concept': paste the following into any VBA module (e.g. use Excel), no references required, creates a new .mdb in your temp directory, creates the tables with data, to prove the recordset is updateable the
ContactName
value is changed and the recordset reopened to show it has indeed changed: