在mysql中的某些符号后获取文本

时间:2014-05-27 19:51:37

标签: php mysql sql

我需要mysql查询,它会在(e)符号

之后显示文本

例如。我在mysql表中有以下文本

test of my application (e) I'm so happy

运行查询后我需要I'm so happy

1 个答案:

答案 0 :(得分:2)

substring_index()

应该相当容易
SELECT SUBSTRING_INDEX(`column_name`, ')', -1) // return everything from the right of the closing parentheses