pub fn strpos<'a, V, E, S>(
expr: E,
search: S,
) -> SQLExpr<'a, V, Int4, E::Nullable, <E::Aggregate as AggOr<S::Aggregate>>::Output>where
V: SQLParam + 'a,
V::DialectMarker: PostgresStringSupport,
E: Expr<'a, V>,
E::SQLType: Textual,
S: Expr<'a, V>,
S::SQLType: Textual,
S::Aggregate: AggregateKind,
E::Aggregate: AggOr<S::Aggregate>,Expand description
STRPOS - finds the position of a substring (PostgreSQL).