pub fn concat_with_separator<S, I, A>(
separator: impl IntoExpr<S>,
values: I,
) -> Expr<<S as StringUnaryExpr>::Output>Expand description
Concatenates string expressions with separator, ignoring NULL values.
Returns NULL when separator is NULL.
Maps to PostgreSQL CONCAT_WS.