SQL Operators

SQL Operators#

class trytond.sql.operators.RangeOperator(first, second)#

Does the first range contain the second range or element?

class trytond.sql.operators.RangeIn(first, second)#

Is the first range or element contained in the second range?

class trytond.sql.operators.RangeOverlap(first, second)#

Does the ranges overlap, that is, have any elements in common?