Pastebin
Paste #2873: No description
< previous paste - next paste>
Pasted by Anonymous Coward
query = session.query(Footwear).filter(
Footwear.mm_foot_length >= mm_foot_length + 8,
Footwear.mm_foot_length <= mm_foot_length + 10,
Footwear.mm_forefoot_width >= mm_forefoot_width + 3,
Footwear.mm_forefoot_width <= mm_forefoot_width + 5,
Footwear.mm_forefoot_height >= mm_forefoot_height + 2,
Footwear.mm_forefoot_height <= mm_forefoot_height + 3,
Footwear.mm_instep_height >= mm_instep_height + 2,
Footwear.mm_instep_height <= mm_instep_height + 3,
Footwear.mm_heel_width >= mm_heel_width + 2,
Footwear.mm_heel_width <= mm_heel_width + 3
).order_by(Footwear.mm_foot_length)
New Paste
Go to most recent paste.