Re: Joins~

From: Gurudutt <guru(at)indvalley(dot)com>
To: Markus Bertheau <twanger(at)bluetwanger(dot)de>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Joins~
Date: 2001-11-22 10:40:18
Message-ID: 10524699358.20011122161018@indvalley.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hello Markus,

Doesn't seem to be working, markus , I tried this query

-- QUERY ---

select tickettab.tokenid, ticketmultab.techcode,ticketmultab.techcode,
tickettab.problemstmt,ticketmultab.problemstmt
from (tickettab LEFT JOIN ticketmultab ON tickettab.tokenid=ticketmultab.tokenid)
as ticketjoinedtab order by
ticketjoinedtab.arrivaldate desc,
ticketjoinedtab.arrivaltime desc

--- END QUERY --

Error I got is

---- ERROR ----

ERROR: Column reference "arrivaldate" is ambiguous

------ END ERROR --

Are there any modifications that I need to do, to the query. Thanks
for the reply

--
Best regards,
Gurudutt mailto:guru(at)indvalley(dot)com

Life is not fair - get used to it.
Bill Gates

Wednesday, November 21, 2001, 5:27:59 PM, you wrote:

MB> On Wed, 2001-11-21 at 09:37, Gurudutt wrote:
>> I want to sort the combination of the result set, like
>> suppose an entry exists in tickettab as 2001-11-12 12:30
>> and the next entry in tickettab is 2001-11-12 16:40
>>
>> if there exists a entry in ticketmultab as 2001-11-12 13.30
>> then I should get the results as follows
>>
>>
>> ticketid arrival date arrival time
>>
>> 1 2001-11-12 12:30:00 -- tickettab entry
>> 2 2001-11-12 13:30:00 --ticketmultab entry
>> 3 2001-11-12 16:40:00 -- tickettab entry

MB> maybe it works like this:

MB> select * from (<join tickettab and ticketmultab however you want to) as
MB> ticketjoined order by ticketjoined.arrivaldate, ticketjoined.arrivaltime

MB> let me know if it works.

MB> Markus Bertheau

MB> ---------------------------(end of broadcast)---------------------------
MB> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org

In response to

  • Re: Joins~ at 2001-11-21 11:57:59 from Markus Bertheau

Responses

  • Re: Joins~ at 2001-11-23 07:55:22 from Markus Bertheau

Browse pgsql-sql by date

  From Date Subject
Next Message Hervé Piedvache 2001-11-22 11:57:33 How are working index with date ?
Previous Message MindTerm 2001-11-22 10:21:53 Re: Porting Oracle Decode to Postgresql