SQLserver 字符串切割末位以及case when 判断大小

 

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 新字段名 
 

 

上一篇:WordPress广告管理插件Adning Advertising1.5.8汉化版


下一篇:Eclipse部署Maven web项目到tomcat服务器时,没有将lib下的jar复制过去的解决办法