前段时间学会了统计自定义模型里相关会员的信息数量,即: $abc=$empire->gettotal("select count(*) as total from phome_ecms_zidingyi where userid='$r[userid]'")
但是今天有了新问题,在这个自定义模型里有一个字段是数字,我现在需要把此会员的该字段都相加起来,SQL语句已测没有问题: select sum(字段名) from phome_ecms_zidingyi where userid='$r[userid]'
但是现在不知道如何把这个sum的结果取出来,试了一下像上面那样as total再用gettotal()是可以的,但不知道这种做法是否合理? 对php一窍不通,gettotal()是帝国里的函数还是php内置的呢?一般来说php怎么取出上面这种情况中sql返回的结果?
谢谢。
|