ORMExecuteQuery()似乎返回以下
的数组example = ormExecuteQuery("select count(commentID) as n from pComment c");
output uing cfdump for example would be...
array
[1][x]
其中x是计数。
我怎样才能将n作为数字而不是返回的数组对象?我想要getn()
答案 0 :(得分:4)
试试这个:
example = ormExecuteQuery("select count(commentID) as n from pComment c", true);
第二个参数被称为unique
,尽管它的名称令人困惑,它正是你所需要的:使函数返回单个值。