Module sea_query::query[][src]

Expand description

Query statements (select, insert, update & delete).

Usage

Structs

Condition

Represents the value of an Condition::any or Condition::all: a set of disjunctive or conjunctive conditions.

ConditionHolder
DeleteStatement

Delete existing rows from the table

InsertStatement

Insert any new rows into an existing table

JoinExpr

Join expression used in select statement

Query

Shorthand for constructing any table query

SelectExpr

Select expression used in select statement

SelectStatement

Select rows from an existing table

UpdateStatement

Update existing rows in the table

Enums

ConditionExpression

Represents anything that can be passed to an Condition::any or Condition::all’s Condition::add method.

ConditionHolderContents
ConditionType
QueryStatement

All available types of table query

SelectDistinct

List of distinct keywords that can be used in select statement

Traits

ConditionalStatement
IntoCondition
OrderedStatement
QueryStatementBuilder

Type Definitions

Cond