select aa,bb,(CASE when len(cc)>14 then left(字段,len(字段)-4) else left(字段,len(字段)-7) end)as 新字段名 from table where xx like '%xx%' --字符串从末位切割
left(字段,len(字段)-4) --case when 判断数字大小
(CASE when len(cc)>14 then left(字段,len(字段)-4) else left(字段,len(字段)-7) end)as 新字段名