select_by

Function select_by 

Source
pub fn select_by<T>(c: Column<T>) -> Query<T>
where T: Bind,
Expand description

Creates a SELECT query to retrieve rows from the table based on a specific column.

SQL: SELECT * FROM .. WHERE .. = $1