Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何对 Access 2010 中的一列求和并在新列中显示总数(也许使用表达式生成器)?
将计算值存储在表中通常是个坏主意。如果需要计算值,请在显示时计算。通常这是在报告或表格中完成的。
这也有例外,但听起来您最好在报告/表单中而不是在表格中显示计算字段。
SELECT SUM(num_fld) as Sum_Nums FROM your_table WHERE num_fld > 5;
我不知道表达式生成器,但这个查询有效