很多时候数据库表中某些字段是由中文和字母或数字组成,但有时我们又需要将字段中的中文去掉.想要实现这种需求的方法有很多,下面就是其中一种解决方法. 首先我们先建立测试数据 create table test( id int primary key identity(1,1), name varchar(20) not null ) insert into test(name) values('测试2') insert into test(name) values('测试a') insert int…