heynemann (owner)

Revisions

gist: 112043 Download_button fork
public
Public Clone URL: git://gist.github.com/112043.git
Embed All Files: show embed
Python #
1
2
3
4
5
6
From(collection)
          .order_by("-(salary + bonus)")
          .select("name","age","sex","salary","salary + bonus")
 
# This query returns the evaluated return of salary + bonus
# as dynamic_4 and sorts through this expression in desc order.