本文介绍了操作必须使用可更新的查询!? - 不是权限 - CrossTab !! ??的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

运行访问2k; mdb w /链接表到另一个mdb

(前/后端);


试图运行一个更新表FROM的信息来自

交叉表查询。

我没有尝试更新交叉表查询本身 - 只使用

信息来更新完美可更新的表! br />

为什么----当我明显没有

权限问题或更新表时我会尝试这个错误到
更新!?!?!?!? (我可以在没有XT的情况下清楚地更新它)


如果我不能使用这些信息那么----好的是交叉表查询

除了报告以外的其他内容?!?!?


这是我的查询(XT表是我的交叉表):

我猜我可能需要使用子查询来解决这个问题,

但我不知道怎么做,也不知道为什么我应该走这条路...... />

UPDATE Q_answers_XT LEFT JOIN T_final_answers ON

Q_answers_XT.id = T_final_answers.id

SET T_final_answers.q = [Q_answers_XT]![q ],T_final_answers.a =

[Q_answers_XT]![a];

任何帮助表示赞赏...

TIA

running access 2k; mdb w/ linked tables to another mdb
(front/back-end);

trying to run a query that updates a table FROM information from a
crosstab query.
I AM NOTT trying to update the crosstab query itself - only use
information FROM it to update a perfectly updatable table!

Why the ---- would I get this error, when there are clearly NO
permission issues, or issues in updating the table I''m trying to
update!?!?!?!? (I can clearly update it without the XT)

What the ---- good is a crosstab query, if I can''t USE the information
within it for something other than reporting?!?!?

Here''s my query (the "XT" table is my crosstab):
I''m guessing that maybe I need to use a sub-query to work around this,
but am not sure how, nor why I should have to go this route....

UPDATE Q_answers_XT LEFT JOIN T_final_answers ON
Q_answers_XT.id = T_final_answers.id
SET T_final_answers.q = [Q_answers_XT]![q], T_final_answers.a =
[Q_answers_XT]![a];
any help appreciated...
TIA

推荐答案













这篇关于操作必须使用可更新的查询!? - 不是权限 - CrossTab !! ??的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 10:53