|
7#

楼主 |
发表于 2006-7-1 00:35:22
|
只看该作者
RE:
I think that is a special note to say the differences between SLECT..WHEN..END statement in the NLP,CALIS, GENMOD, and MODEL procedures (refer to the SAS/ETS) and in the DATA step (refer to SAS/Base). Other words, below syntax is valid in the procedures mentioned above, but in DATA STEP.
[code:ebe82]
SELECT;
WHEN ( exp1 ) stmt1;
stmt2;
WHEN ( exp2 ) stmt3;
stmt4;
END;
[/code:ebe82] |
|