This repository was archived by the owner on Oct 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Builder Conditions
Miku edited this page Mar 17, 2023
·
5 revisions
Conditions for your sql
The default condition for the query is AND, OR is possible
AND()OR()default_and()default_or()
where(expression: Union[str, Arithmetic], expression: Union[str, int], filter_operator: str)where_in(expression: Union[str, Arithmetic], checkedList: tuple[str, int, float])where_in_not(expression: Union[str, Arithmetic], checkedList: tuple[str, int, float])
like(expression: Union[str, Arithmetic], value: Union[str, int, float])like_not(expression: Union[str, Arithmetic], value: Union[str, int, float])
between(expression: Union[str, Arithmetic], value1: Union[str, int], value2: Union[str, int, float])between_not(expression: Union[str, Arithmetic], value1: Union[str, int], value2: Union[str, int, float])
is_null(column: str)is_not_null(column: str)is_true(column: str)is_not_true(column: str)is_false(column: str)is_not_false(column: str)