Django:
Item.objects.filter(price__gt=3)
select(o for o in Item if o.price>3)
Item.select().where(Item.price>3)
$Item->where('price', '>', 3)->find();
Django:
Pony ORM: Peewee: Kohana: You see, the __gt or '>' here is kind of stupid.