我有一个变量,其中更多的句子中有一个冒号(:)。喜欢 AC:acuimule,AB:abitre,..
我需要从该变量中的所有行中删除冒号。我试过了
proc sql;
create table aaa as
select variable1,
variable2=compress(variable2,":")
FROM aaa2
;QUIT;
答案 0 :(得分:2)
如果要使用PROC SQL,则不要使用=。
proc sql;
create table aaa as
select variable1,
compress(variable2,':') as variable2
FROM aaa2
;
quit;