日期:2014-05-16 浏览次数:20512 次
create table test(aa nvarchar(100))
insert test
select '.我是中国人' union all
select '.你是哪里的人' union all
select '.我是地球村是反对法' union all
select '.该的撒范德萨分公司大郭德纲'
update test set aa=replace(aa,'.','')
select * from test
/*
我是中国人
你是哪里的人
我是地球村是反对法
该的撒范德萨分公司大郭德纲
*/
SELECT REPLACE('.我是中国人','.','')
select
(case 出院西医其他诊断1 when (LEFT(出院西医其他诊断1, 1)='.') then REPLACE(出院西医其他诊断1, '.', '') else 出院西医其他诊断1 end )as tt
from HOSPITAL_GATHERING
create table test(aa nvarchar(100))
insert test
select '.我是中国人' union all
select '.你是哪里的人' union all
select '.我是地球村是反对法' union all
select '.该的撒范德萨分公司大郭德纲' union all
select '.新增测试.语句'
update test set aa=STUFF(aa,1,1,'')
select * from test
/*
我是中国人
你是哪里的人
我是地球村是反对法
该的撒范德萨分公司大郭德纲
新增测试.语句
*/
SELECT STUFF('.我是中国人',1,1,'')你试试啊