We can find the index of the first occurrence of a given substring in MySQL using the INSTR() function as follows.
INSTR()
SELECT instr(\'Have_a_good_da
I think you can use substring_index in this way:
select substring_index(string, delimiter,-1)
-1 will start at the end of the string.