SQLTriplet¶
tiatoolbox
.annotation
.dsl
.SQLTriplet
- class SQLTriplet(lhs, op=None, rhs=None)[source]¶
Representation of an SQL triplet expression (LHS, operator, RHS).
- Parameters:
lhs (SQLTriplet | str | SQLExpression | Number | bool | object)
op (Callable | str | None)
rhs (SQLTriplet | str | SQLExpression | Number | SQLNone | object | None)
- lhs¶
Left hand side of expression.
- Type:
- rhs¶
Right hand side of expression.
- Type:
Initialize
SQLTriplet
.Methods