| Date: | Mon, 29 Apr 2002 15:26:27 -0400 |
| Reply-To: | "Goldman, Brad (AT-Atlanta)" <Brad.Goldman@AUTOTRADER.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | "Goldman, Brad (AT-Atlanta)" <Brad.Goldman@AUTOTRADER.COM> |
| Subject: | Re: Unusual subsetting |
| Content-Type: | text/plain; charset="iso-8859-1" |
|---|
> Date: Mon, 29 Apr 2002 14:26:15 -0400
> From: "Droogendyk, Harry" <Harry.Droogendyk@CIT.COM>
> Subject: Re: Unusual subsetting
> proc sql;
> create view match as
> select *
> from a
> group by id
> having other = min(other) and other = max(other)
Harry, I had almost identical code. Is there any reason that last line
can't read:
having max(other) = min(other)
?
-Brad
|