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.
任何人都知道如何合计 MS Access Table in Row 中的总和。假设我有一个表 TblAccount,其字段名称为 Total。我需要对 Total 字段名称中的所有行求和。
您应该创建一个“总计”查询:
SELECT sum(TblAccount.Total) as sumOfTotal FROM TblAccount;
这将汇总表中所有行中的总计字段。