| Date: | Mon, 15 Apr 2002 16:14:22 GMT |
| Reply-To: | statistics <conjecture@GEOCITIES.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | statistics <conjecture@GEOCITIES.COM> |
| Organization: | IMS Netvigator |
| Subject: | any difference between proc sql and proc freq |
|---|
Hi,
Please tell me any differece between
proc sql;
create table file as select
id, count(*) as count
from filename
group by id;
and
proc freq data=file noprint;
tables id/out=filename;
Thanks
|