Skip to main content

concat_with_separator

Function concat_with_separator 

Source
pub fn concat_with_separator<S, I, A>(
    separator: impl IntoExpr<S>,
    values: I,
) -> Expr<<S as StringUnaryExpr>::Output>
where S: StringUnaryExpr, I: IntoIterator<Item = A>, A: IntoConcatExpr,
Expand description

Concatenates string expressions with separator, ignoring NULL values. Returns NULL when separator is NULL. Maps to PostgreSQL CONCAT_WS.