Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Differentiating results of SELECT query
Alright, I found a solution to my own problem. This works, but it is
very slow. Does anyone has a more graceful solution?
SELECT locations_s.address as start_address, locations_e.address as
end_address
FROM rides, locations locations_s, locations locations_e
WHERE locations_s.location_key = rides.start
AND locations_e.location_key = rides.end
AND rides.ride_key = '8'
Received on Wed Dec 13 2006 - 03:35:00 CST