ormlette/query/query
The main Query module that provides a high-level API for building SQL queries It is built on top of the Cake library to provide a more ergonomic interface, but can easily be exported to standard cake-select queries.
Types
Functions
pub fn from_table(table: Table) -> Query
pub fn greater_than(
query: Query,
column: String,
value: a,
) -> Query
pub fn inner_join(query: Query, target_table: Table) -> Query
pub fn join(
query: Query,
target_table: Table,
join_type: fn(JoinTarget, Where, String) -> Join,
) -> Query