|
Hi, I have some problems in select statement.
Let's say I have a table called MYJOURNEY which have TripNum, TripCount, Departure, Destination. E.g.
(3,1,'America', 'New Zealand')
(3,2,'New Zealand', 'Indonesia')
I need to select TripNum, TripCount, Departure, RestPt, Destination where RestPt refer to New Zealand.
|