From: | Gurudutt <guru(at)indvalley(dot)com> |
---|---|
To: | pgsql-sql(at)postgresql(dot)org |
Subject: | Joins~ |
Date: | 2001-11-21 08:37:28 |
Message-ID: | 13216589307.20011121140728@indvalley.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
This may be just a re-post of my previous mail, but unfortunately, I
haven't got any reply whatsoever to this problem, Is the question too
easy to answer or what, I couldn't get what it meant. I am posting the
problem again, hopefully somebody will be able to give me a solution.
----------------------------------------------------------------------
I have two tables
1. tickettab
2. ticketmultab
Both the tables have arrivaldate and arrivaltime as fields
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
so depending on the arrival date and arrival time I need the result
set to be sorted.
I used bubble sort in php by moving the result set into an array and
then sorting it. Is there any other way to do this thru SQL.
--
Best regards,
Gurudutt mailto:guru(at)indvalley(dot)com
Life is not fair - get used to it.
Bill Gates
From | Date | Subject | |
---|---|---|---|
Next Message | Markus Bertheau | 2001-11-21 11:57:59 | Re: Joins~ |
Previous Message | David Stanaway | 2001-11-21 02:07:02 | Re: Postmaster will not start??? |