From: | Jeff MacDonald <jeff(at)pgsql(dot)com> |
---|---|
To: | omid omoomi <oomoomi(at)hotmail(dot)com> |
Cc: | jeff(at)pgsql(dot)com, pgsql-sql(at)postgresql(dot)org, pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: 7.0 weirdness |
Date: | 2000-05-30 14:10:24 |
Message-ID: | Pine.BSF.4.21.0005301109520.2897-100000@rage.hub.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers pgsql-sql |
gid is unique.. it's a serial..
funny thing is tho this worked on 6.5
oh well thanks for the info.
jeff
On Tue, 30 May 2000, omid omoomi wrote:
> Hi jeff,
> I'm not sure but may be that's because you are using select distinct and so
> there would be a few rows with same "gid" but different "created" fields in
> your table . And PG does not know which one to select and compare for ORDER
> BY clause. If that ,you would need to change the table structure to a better
> normal form.
> Regards ,
> Omid Omoomi
>
>
> >From: Jeff MacDonald <jeff(at)pgsql(dot)com>
> >Reply-To: Jeff MacDonald <jeff(at)pgsql(dot)com>
> >To: pgsql-sql(at)postgresql(dot)org, pgsql-hackers(at)postgresql(dot)org
> >Subject: [SQL] 7.0 weirdness
> >Date: Tue, 30 May 2000 09:28:11 -0300 (ADT)
> >
> >hi folks,
> >
> >this query works fine in 6.5 but screwie in 7.0
> >
> >7.0
> >
> >gm=> SELECT DISTINCT gid FROM members
> >gm-> WHERE active = 't'
> >gm-> AND (gender = 0
> >gm-> AND (wantrstypemale LIKE '%Short Term%'
> >gm-> OR wantrstypemale like '%Marriage%'
> >gm-> OR wantrstypemale like '%Long Term%'
> >gm-> OR wantrstypemale like '%Penpal%'
> >gm-> OR wantrstypemale like '%Activity Partner%')
> >gm-> ) order by created desc;
> >ERROR: For SELECT DISTINCT, ORDER BY expressions must appear in target
> >list
> >gm=>
> >
> >
> >any idea's ?
> >
> >jeff
> >
> >
> >
>
> ________________________________________________________________________
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
>
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2000-05-30 14:22:39 | Re: Configuration and build clean-up |
Previous Message | Karel Zak | 2000-05-30 14:08:31 | Re: AW: AW: Proposal for enhancements of privilege system |
From | Date | Subject | |
---|---|---|---|
Next Message | Matthias Urlichs | 2000-05-30 14:31:35 | Re: [HACKERS] Re: 7.0 weirdness |
Previous Message | Jeff MacDonald | 2000-05-30 13:46:30 | RE: 7.0 weirdness |