pub fn json_extract<'a, C, P>(
column: C,
path: P,
extract_as_string: bool,
) -> Function<'a>Expand description
Extracts a subset of a JSON blob given a path. Two types of paths can be used:
Stringpaths, referring to JSON paths. This is supported by MySQL only.Arraypaths, supported by Postgres only.