mysqlx.SelectStatementΒΆ
- class mysqlx.SelectStatement(table: DatabaseTargetType, *fields: str)ΒΆ
Bases:
ReadStatement
A statement for record retrieval operations on a Table.
- Parameters:
table (mysqlx.Table) β The Table object.
*fields β The fields to be retrieved.
- bind(*args: Any) FilterableStatement ΒΆ
Binds value(s) to a specific placeholder(s).
- Parameters:
*args β The name of the placeholder and the value to bind. A
mysqlx.DbDoc
object or a JSON string representation can be used.- Returns:
FilterableStatement object.
- Return type:
- Raises:
ProgrammingError β If the number of arguments is invalid.
- property changed: boolΒΆ
True if this statement has changes.
- Type:
bool
- property deallocate_prepare_execute: boolΒΆ
True to deallocate + prepare + execute statement.
- Type:
bool
- property exec_counter: intΒΆ
The number of times this statement was executed.
- Type:
int
- get_binding_map() Dict[str, Any] ΒΆ
Returns the binding map dictionary.
- Returns:
The binding map dictionary.
- Return type:
dict
- get_bindings() Dict[str, Any] | List ΒΆ
Returns the bindings list.
- Returns:
The bindings list.
- Return type:
list
- get_grouping() List[ProtobufMessageType | ProtobufMessageCextType] ΒΆ
Returns the grouping expression list.
- Returns:
The grouping expression list.
- Return type:
list
- get_having() MessageType ΒΆ
Returns the having expression.
- Returns:
The having expression.
- Return type:
object
- get_limit_offset() int ΒΆ
Returns the limit offset.
- Returns:
The limit offset.
- Return type:
int
- get_limit_row_count() int ΒΆ
Returns the limit row count.
- Returns:
The limit row count.
- Return type:
int
- get_projection_expr() List[ProtobufMessageType | ProtobufMessageCextType] ΒΆ
Returns the projection expression.
- Returns:
The projection expression.
- Return type:
object
- get_sort_expr() List[ProtobufMessageType | ProtobufMessageCextType] ΒΆ
Returns the sort expression.
- Returns:
The sort expression.
- Return type:
object
- get_sql() str ΒΆ
Returns the generated SQL.
- Returns:
The generated SQL.
- Return type:
str
- get_where_expr() MessageType ΒΆ
Returns the where expression.
- Returns:
The where expression.
- Return type:
object
- group_by(*fields: str) ReadStatement ΒΆ
Sets a grouping criteria for the resultset.
- Parameters:
*fields β The string expressions identifying the grouping criteria.
- Returns:
ReadStatement object.
- Return type:
- having(condition: str) ReadStatement ΒΆ
Sets a condition for records to be considered in agregate function operations.
- Parameters:
condition (string) β A condition on the agregate functions used on the grouping criteria.
- Returns:
ReadStatement object.
- Return type:
- increment_exec_counter() None ΒΆ
Increments the number of times this statement has been executed.
- is_doc_based() bool ΒΆ
Check if it is document based.
- Returns:
True if it is document based.
- Return type:
bool
- is_lock_exclusive() bool ΒΆ
Returns True if is EXCLUSIVE LOCK.
- Returns:
True if is EXCLUSIVE LOCK.
- Return type:
bool
Returns True if is SHARED LOCK.
- Returns:
True if is SHARED LOCK.
- Return type:
bool
- limit(row_count: int, offset: int | None = None) FilterableStatement ΒΆ
Sets the maximum number of items to be returned.
- Parameters:
row_count (int) β The maximum number of items.
- Returns:
FilterableStatement object.
- Return type:
- Raises:
ValueError β If
row_count
is not a positive integer.
Changed in version 8.0.12: The usage of
offset
was deprecated.
- property lock_contention: LockContentionΒΆ
The lock contention value.
- Type:
mysqlx.LockContention
- lock_exclusive(lock_contention: LockContention = LockContention.DEFAULT) ReadStatement ΒΆ
- Execute a read operation with EXCLUSIVE LOCK. Only one lock can be
active at a time.
- Parameters:
lock_contention (
mysqlx.LockContention
) β Lock contention.
- Execute a read operation with SHARED LOCK. Only one lock can be
active at a time.
- Parameters:
lock_contention (
mysqlx.LockContention
) β Lock contention.
- offset(offset: int) FilterableStatement ΒΆ
Sets the number of items to skip.
- Parameters:
offset (int) β The number of items to skip.
- Returns:
FilterableStatement object.
- Return type:
- Raises:
ValueError β If
offset
is not a positive integer.
New in version 8.0.12.
- order_by(*clauses: str) SelectStatement ΒΆ
Sets the order by criteria.
- Parameters:
*clauses β The expression strings defining the order by criteria.
- Returns:
SelectStatement object.
- Return type:
- property prepared: boolΒΆ
True if this statement has been prepared.
- Type:
bool
- property repeated: boolΒΆ
True if this statement was executed more than once.
- Type:
bool
- reset_exec_counter() None ΒΆ
Resets the number of times this statement has been executed.
- property schema: SchemaTypeΒΆ
The Schema object.
- Type:
- sort(*clauses: str) FilterableStatement ΒΆ
Sets the sorting criteria.
- Parameters:
*clauses β The expression strings defining the sort criteria.
- Returns:
FilterableStatement object.
- Return type:
Deprecated since version 8.0.12.
- property stmt_id: intΒΆ
Returns this statement ID.
- Returns:
The statement ID.
- Return type:
int
- property target: DatabaseTargetTypeΒΆ
The database object target.
- Type:
object
- where(condition: str) SelectStatement ΒΆ
Sets the search condition to filter.
- Parameters:
condition (str) β Sets the search condition to filter records.
- Returns:
SelectStatement object.
- Return type: