s = db.ordered_prod.subtotal.sum()
row = db(db.ordered_prod.order_number==ord_num).select(s).first()
print row[s]

On Friday, 17 July 2015 07:58:31 UTC-5, Rahul wrote:
>
> How to extract the value from this query/row object - - ? 
> Total = 
> db(db.ordered_prod.order_number==ord_num).select(db.ordered_prod.subtotal.sum()).first()
>
> I know this is silly and may have a  simple answer but for me I get a 
> weird response if I print Total . Like below -  
>
> <Row {'_extra': {'SUM(ordered_prod.subtotal)':176126}}> 
>
>
> Cheers, Rahul
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to