Date: Thu, 11 Feb 2010 07:02:17 -0800
Reply-To: montura <monturainc@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: montura <monturainc@GMAIL.COM>
Organization: http://groups.google.com
Subject: Re: Is there a better way to do this?
Content-Type: text/plain; charset=ISO-8859-1
Simple SQL?
proc sql;
create table audit as
select distinct id,
1 as exclusion
from have
where icd9 in(49300,49301,49302);
quit;
|