I need mysql query which brings the text after (e) symbol
eg. I have the following text in mysql table
test of my application (e) I'm so happy
after run query I need as a result I'm so happy
I need mysql query which brings the text after (e) symbol
eg. I have the following text in mysql table
test of my application (e) I'm so happy
after run query I need as a result I'm so happy
It should be fairly easy with substring_index()
SELECT SUBSTRING_INDEX(`column_name`, ')', -1) // return everything from the right of the closing parentheses