34,837
社区成员




create table tb(id char(10))
insert into tb select 'a'
select '+'+id+'+' from tb
alter table tb alter column id varchar(10)
insert into tb select 'b'
select '+'+id+'+' from tb
update tb set id=rtrim(id)
select '+'+id+'+' from tb
+a+
+b+