Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Building an index for next/last in a photo album.

by Roy Johnson (Monsignor)
on Jul 26, 2004 at 20:44 UTC ( [id://377574]=note: print w/replies, xml ) Need Help??


in reply to Building an index for next/last in a photo album.

I can't figure out how to pull the target record, plus the one before and after it in a single SQL query. I suppose that can't be done.
It can be done, though it's not particularly efficient, and the exact syntax of the query will depend on which database you're using. The strategy is to outer join the table to itself twice (once for the prev, once for the next). Something like (in Oracle):
select max(P.img_id), T.img_id, min(N.img_id) from images T, images P, images N where P.img_id(+) < T.img_id and P.uid(+) = T.uid and P.album_id(+) = + T.album_id and N.img_id(+) > T.img_id and N.uid(+) = T.uid and N.album_id(+) = + T.album_id and T.img_id = ? and T.uid = ? and T.album_id = ? group by T.img_id
That said, grabbing the array is a better way to do it.
Update: added other outer-joined columns.

We're not really tightening our belts, it just feels that way because we're getting fatter.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://377574]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (3)
As of 2024-04-18 23:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found