Date: Wed, 1 May 1996 14:24:12 -0500
Reply-To: GERALD ZUCKIER <ZUCKIER@CHIME.ORG>
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: GERALD ZUCKIER <ZUCKIER@CHIME.ORG>
Subject: Re: Dataset questions - this is a toughie!
In-Reply-To: <4m3rmr$29h@tribune.concentric.net>
One to many... proc SQL!
proc sql;
create table filec as
select *
from filea,fileb
where filea.ssn = fileb.ssn and
filea.name = fileb.name ;
You can leave out the create table line if you just want a printout.
|