Date: Tue, 2 May 2000 16:43:31 -0400
Reply-To: Lei Fan <fanl@WESTAT.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Lei Fan <fanl@WESTAT.COM>
Subject: Re: PROC SQL question
You may try this:
proc sql;
create tabel c as
select a.v1, v2
from a, b
where a.v1 = b.v1;
quit;
|