34,873
社区成员
发帖
与我相关
我的任务
分享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+