I have a table with this type of value 20|10|5|8|19| (with separator)
I need to select rows, where first value (for example after explode), less than 20.
$arr = explode("|", "goal_times");
$first_goal_time = $arr[0];
But how to do this in Mysql query?