sql server中判断字符串长度然后怎样截取
len(字段名) 获取长度
left(字段名,index) 获取从左边开始数。多少个字符。index从0开始
right(字段名,index) 获取从右边开始数。多少个字符。index从0开始
substring (字段名,beginindex,endindex) 截取指定位置的字符串。beginindex 开始位置 endindex 结束位置
且结果是结束位置的下标的前一位。