sql函数求助
有一字段
AA 数据为aa@nbcx.cn
而我想取出的数据为nbcx.cn
请问大家该怎么处理
是否有函数能之直接得到@在aa@nbcx.cn中的位置
------解决方案--------------------有
substring()
------解决方案--------------------楼上没理解
MySQL不懂
用java的意思就是
先indexOf( "@ ")
然后在substring
------解决方案--------------------select substr(AA,position( '@ ' in AA)+1) from tablename
例如:
select substr( 'tengwei@yahoo.com.cn ',position( '@ ' in 'tengwei@yahoo.com.cn ')+1)
------解决方案--------------------set @test1 = 'aa@nbcx.cn ';
select substring(@test1,instr(@test1, '@ ')+1);