1、LTRIM()---去掉列值左边的空格 如下代码:
select * from dbo.course where tno='t003' and cno='c0013'
我们发现这条行数据的cname列值最左侧存在一个空格,为了数据的准确性,我们现在需要去掉空格,下面是解决代码:
select LTRIM(cname),cno,tno from dbo.course where tno='t003' and cno='c0013'
2、RTRIM()---去掉列值右边的空格 ---作用和LTRIM()一样,这里不做介绍
3、replace(计算字段,' ','')---去掉计算字段列值中所有的空格,如下代码:
select cname,cno,tno from dbo.course where tno='t003' and cno='c0013'
现在有个需求,需要去掉cname字段列值中的所有空格,下面解决代码:
select replace(cname,' ',''),cno,tno from dbo.course where tno='t003' and cno='c0013'
ok,所有的空格都没有了,需求完成!