由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - sas question - quotation marks
相关主题
怎么解决这个sas macro的问题?请教macro的一个小程序,
现在是这么一个问题。很弱的SAS合并数据问题
请教sas问题how to output cumulative percent to a dataset from Proc Freq?
title statement请教SAS macro - please help, still not resolved
请教call executeHelp for freq subset
还是那个MACRO的问题My own solution 请教SAS Macro - Baozi to thank you!!!
请教SAS 问题SAS问题求教
sas问题求教proc sql 问题
相关话题的讨论汇总
话题: mary话题: peter话题: john话题: quotation话题: marks
进入Statistics版参与讨论
1 (共1页)
m**o
发帖数: 5261
1
proc sql;
select name into :names separated by ....;
if I want to get a macro variable like peter','john','mary then how can i
specify the statement after separated by?
if i get a string like peter','john','mary how can i turn it into 'peter','
john','mary'?
Thank you very much.
a****g
发帖数: 8131
2
select "'"||name||"'" into
m**o
发帖数: 5261
3
Thank you

【在 a****g 的大作中提到】
: select "'"||name||"'" into
a****g
发帖数: 8131
4
50个包子,不用谢

【在 m**o 的大作中提到】
: Thank you
h******e
发帖数: 1791
5
50个包子是500点,好大的胃口。

【在 a****g 的大作中提到】
: 50个包子,不用谢
j**********3
发帖数: 305
6
there is quote function in proc sql right now. No need to use the old school
way .LOL
d******9
发帖数: 404
7
Details, please.

school

【在 j**********3 的大作中提到】
: there is quote function in proc sql right now. No need to use the old school
: way .LOL

j**********3
发帖数: 305
8
proc sql noprint;
select quote(xxx) into :xxx from xxx;
quit;
1 (共1页)
进入Statistics版参与讨论
相关主题
求教proc sql 问题请教call execute
SAS help还是那个MACRO的问题
请教一个用SAS作DATA MERGE的问题请教SAS 问题
有什么办法能够数出sas dataset里的变量数。sas问题
怎么解决这个sas macro的问题?请教macro的一个小程序,
现在是这么一个问题。很弱的SAS合并数据问题
请教sas问题how to output cumulative percent to a dataset from Proc Freq?
title statement请教SAS macro - please help, still not resolved
相关话题的讨论汇总
话题: mary话题: peter话题: john话题: quotation话题: marks