SQLTriplet¶

class SQLTriplet(lhs, op=None, rhs=None)[source]¶

Representation of an SQL triplet expression (LHS, operator, RHS).

Parameters:
lhs¶

Left hand side of expression.

Type:

SQLExpression

op¶

Operator string.

Type:

str

rhs¶

Right hand side of expression.

Type:

SQLExpression

Initialize SQLTriplet.

Methods