本文介绍了ms访问默认值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在ms访问的字段属性中添加''默认值''中的函数,以计算新记录后同一表中字段的平均值?
我尝试这个但是没有工作:
(([col1] + [col2] + [col3] + [col4])/ 4 )
请帮忙。
How can i add a fuction in ''default value'' in field properties in ms access, to calculate the average of fields in the same table after a new record?
I try this but didn''t work:
(([col1]+[col2]+[col3]+[col4])/4)
Please help.
推荐答案
PARAMETERS p1 INT, p2 INT, p3 INT, p4 INT;
INSERT INTO YourTable (col1, col2, col3, col4, col5)
VALUES(p1, p2, p3, p4, (p1+p2+p3+p4)/4);
但是我想知道你为什么要存储平均值,如果你总能计算它(基于col1-col4值)?
But i''m wondering why do you want to store average value, if you always can calculate it (based on col1-col4 values)?
SELECT col1, col2, col3, col4, (col1+col2+col3+col4)/4 AS col5
FROM YourTable
这篇关于ms访问默认值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!