3

ORMExecuteQuery() 似乎为以下返回一个数组

example = ormExecuteQuery("select count(commentID) as n from pComment c");

output uing cfdump for example would be...
array
[1][x]

其中 x 是计数。

我怎样才能将 n 作为数字而不是返回的数组对象?我只想得到()

4

1 回答 1

4

尝试这个:

example = ormExecuteQuery("select count(commentID) as n from pComment c", true);

第二个参数称为unique,尽管它的名称令人困惑,但它正是您所需要的:使函数返回单个值。

于 2012-06-22T19:34:34.390 回答