如何在php中获取MS Access的sum()查询结果

时间:2015-04-21 08:58:16

标签: php database ms-access

如何在php中获取sum()查询值?我正在使用MS Access DB。

我的代码:

$sql="select sum(col1) from table1 where Id=$id";
$rs=odbc_exec($con,$sql);
odbc_fetch_row($rs);

现在我想获得此查询的结果。我怎么能得到它?

我尝试过echo odbc_result($rs,"col1");

但它给我一个错误odbc_result(): Field Present not found

帮帮我......

1 个答案:

答案 0 :(得分:2)

尝试 -

$sql="select sum(col1) as col_sum from table1 where Id=$id";

通过 -

访问
echo odbc_result($rs,"col_sum");