sql删除字段中指定字符之前的字符串或者删除字段中指定字符之后的字符串

select substring(people,charindex('$',people)+1,len(people)-charindex('$',people)) from tablename

people是字段名,$是指定字符。


该语句是获取美元符号  $之后的值。



select substring(people,0,charindex('$',people)) from tablename;


该语句是获取美元符号 $之前的值。


你可能感兴趣的:(sql)