- or download this
img_id | album_id | uid | name | ext
-------+----------+-----+--------------+------
...
43 | 2 | 12 | vacation_03 | jpg
44 | 14 | 89 | mypetcow | jpg
- or download this
img_id | album_id | seq_id | uid | name | ext
-------+----------+--------+-----+--------------+------
...
42 | 2 | 2 | 12 | vacation_02 | jpg
43 | 2 | 3 | 12 | vacation_03 | jpg
44 | 14 | 4 | 89 | mypetcow | jpg
- or download this
select seq_id from TABLE where img_id = $img_id
- or download this
my $p_seq_id = $seq_id - 1;
my $n_seq_id = $seq_id + 1;
"select img_id from TABLE where seq_id in ($p_seq_id, $seq_id, $n_seq_
+id)"