Date: Tue, 2 May 2000 18:19:54 -0700
Reply-To: oliver <oliver@AGYINC.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: oliver <oliver@AGYINC.COM>
Organization: Verio
Subject: How to use the output from Proc SQL
Content-Type: text/plain; charset=us-ascii
Hi, SAS Expert
Proc SQL is only the middle of my process. However,
I can not figure out how to use the out put from Proc SQL in my later
data step.
For example: How can I use the new variable I just generate "mmt0" in
the later time?
proc sql;
select
avg(t0)/avg(d0) as mmt0,
avg(t1)/avg(d1) as mmt1,
from oliSAS.BV2TC2H1;
where cloneID like 'empty';
--
Oliver
|