pub fn substring(
src: impl Into<Column>,
pos: impl Into<Column>,
len: impl Into<Column>,
) -> ColumnExpand description
Substring starts at pos and is of length len when str is String type or returns the slice of byte array that starts at pos in byte and is of length len when str is Binary type.