Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/266.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/mysql/63.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 获取mysql中某个符号后的文本_Php_Mysql_Sql - Fatal编程技术网

Php 获取mysql中某个符号后的文本

Php 获取mysql中某个符号后的文本,php,mysql,sql,Php,Mysql,Sql,我需要mysql查询,它将文本置于(e)符号之后 我在mysql表中有以下文本 test of my application (e) I'm so happy 运行完查询后,我需要的结果是我很高兴使用它应该相当容易 签出。可能重复: SELECT SUBSTRING_INDEX(`column_name`, ')', -1) // return everything from the right of the closing parentheses

我需要mysql查询,它将文本置于(e)符号之后

我在mysql表中有以下文本

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

运行完查询后,我需要的结果是
我很高兴

使用它应该相当容易

签出。可能重复:
SELECT SUBSTRING_INDEX(`column_name`, ')', -1) // return everything from the right of the closing parentheses