标签: php mysql sql
我需要mysql查询,它会在(e)符号
例如。我在mysql表中有以下文本
test of my application (e) I'm so happy
运行查询后我需要I'm so happy
I'm so happy
答案 0 :(得分:2)
substring_index()
SELECT SUBSTRING_INDEX(`column_name`, ')', -1) // return everything from the right of the closing parentheses