Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Please help on SQL

Re: Please help on SQL

From: Matthias Gresz <GreMa_at_t-online.de>
Date: 1998/03/30
Message-ID: <6fnoos$9m0$1@news02.btx.dtag.de>#1/1

On Fri, 27 Mar 1998 21:03:46 GMT, john_at_demon.co.uk (John K) wrote:

>In article <351A343B.5933F2EC_at_mns.bt.co.uk>, Ahmed <ahmed.dahdouh_at_mns.bt.co.uk>
>wrote:
>> Try
>> SELECT a, b
>> FROM foo
>> where 1 < (select count(*) from foo)
>> GROUP BY a, b;
>>
>> Nuno Guerreiro wrote:
>>
>> > On 25 Mar 1998 20:24:03 GMT, "Shetal Sheth"
>> > <sheths_at_bobcat.ent.ohiou.edu> wrote:
>> >
>> > SELECT a, b
>> > FROM foo
>> > GROUP BY a, b
>> > HAVING count(*) > 1;
>>
>>
>>
>
>Not sure that this will work. You can't group by unless either a or b is a group
>function which they are not. If there was a group function around a or b
>eg max(a) then you could group. Are you sure you don't want to order by ..
>
>John K
>

You can group by a and b, but since there's no grouping function in the select statement you'll be shown all touples <a,b> appearing more than once..

--

Regards

Matthias Gresz    :-)

GreMa_at_T-online.de
Received on Mon Mar 30 1998 - 00:00:00 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US