mysql截取两个字符间的字符串
解决方法:
user/1004@192.168.0.184截取/和@之间的字符串,下面sql的-1表示从重右侧数第一个/,1表示从左侧数起第一个@
SELECT substring_index(substring_index(agent_contact,'/',-1),'@',1) from v_call_center_tiers
mysql截取两个字符间的字符串
解决方法:
user/1004@192.168.0.184截取/和@之间的字符串,下面sql的-1表示从重右侧数第一个/,1表示从左侧数起第一个@
SELECT substring_index(substring_index(agent_contact,'/',-1),'@',1) from v_call_center_tiers
有建议,请留言!