本文介绍了每次在父表上添加/更新记录时,将记录附加到另一个表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我有一个基本的资产管理数据库,包含2个表(Assets和AssetMovements)。每次将新资产添加到Assets表或修改现有资产记录时,我都希望在AssetMovements表中创建新记录。 AssetMovements表用于记录事务。 我创建了一个追加查询,但是如何设置它以便每当点击Assets表单上的''Save''按钮时,它就会运行查询并将该记录追加到AssetMovements table? 谢谢。I have a basic asset management database with 2 tables (Assets and AssetMovements). I want a new record to be created in the AssetMovements table every time a new asset is added to the Assets table or an existing asset record is modified.The AssetMovements table is just there to record the transactions.I have created an append query but how can I set it up so that whenever the ''Save'' button on the Assets form is clicked, it runs the query and appends on that record to the AssetMovements table?Thank you.推荐答案 展开 | 选择 | Wrap | 行号 这篇关于每次在父表上添加/更新记录时,将记录附加到另一个表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
11-03 03:32