gpt4 book ai didi

sql - Access数据库查询锁定编辑表的能力?

转载 作者:行者123 更新时间:2023-12-04 21:08:02 25 4
gpt4 key购买 nike

我在 Microsoft Access 中创建了一个查询,如下所示:

SELECT Deliverables.ID, Deliverables.Title, Deliverables.Summary, 
Deliverables.Header_Code, Deliverables.Header_Code.Value, Deliverables.Sort_order,
Deliverables.Pillar, Deliverables.Pillar.Value, Deliverables.Misc_ID
FROM Deliverables
WHERE (((Deliverables.Pillar.Value)="Link Building"));

但我的问题是这个查询锁定了我的字段,我无法使用查询 View 对表进行更改。

有什么建议么?我正在使用 Microsoft Access 2007

最佳答案

我对多值字段不是很有经验。但是,我对其进行了一些试验,如果您可以从输出字段列表中消除 Header_Code.Value 和 Pillar.Value,我认为您的查询中的字段可能是可编辑的。这个版本可以为你工作吗?

SELECT d.ID, d.Title, d.Summary, d.Header_Code, d.Sort_order, d.Pillar, d.Misc_ID
FROM Deliverables AS d
WHERE (((d.Pillar.Value)="Link Building"));

关于sql - Access数据库查询锁定编辑表的能力?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2791849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com