pub fn right<T>(
arg: impl IntoExpr<T>,
count: impl IntoExpr<i32>,
) -> Expr<<T as StringUnaryExpr>::Output>where
T: StringUnaryExpr,Expand description
Returns the last count characters, or all but the first |count| when negative.
Maps to PostgreSQL RIGHT.