请问在access里如何使用sum()语句取得纪录的合计?

SQL SERVER:select total=sum(score) where type='0009'
access:?????
要告诉我在asp脚本怎样取得他得值。
---------------------------------------------------------------

select sum(score) as total from table1 where type='0009'
---------------------------------------------------------------

select sum(score) form tab where type='0009'

在asp中可使用rs(0).value

Published At
Categories with Web编程
Tagged with
comments powered by Disqus