jsonExtract

inline fun <T : Any> Column<*>.jsonExtract(path: String, sqlType: SqlType<T> = SqlType.of() ?: error("Cannot detect the result's SqlType, please specify manually.")): FunctionExpression<T>(source)

MySQL json_extract function, translated to json_extract(column, path).