pub fn strpos<'a, V, E, S>(
expr: E,
search: S,
) -> SQLExpr<'a, V, Int4, <E::Nullable as NullOr<S::Nullable>>::Output, <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::Nullable: Nullability,
E::Nullable: NullOr<S::Nullable>,
S::Aggregate: AggregateKind,
E::Aggregate: AggOr<S::Aggregate>,Expand description
STRPOS - finds the position of a substring (PostgreSQL).