Tagged Questions

2
votes
1answer
506 views

Mysql Select Next & Prev row not order by id

I have a query ordered by NAME that return smt like this: ID NAME 2121927 AAA 2123589 AAB 2121050 AAC 2463926 BBB ---> known ID 2120595 CCC 2122831 DDD 2493055 EEE 2123583 EEF I need to ...
1
vote
1answer
90 views

mysql next and previous

I currently am using mysql and php to display 9 random results from my table of about 1100 records. Would it be possible to have a next and previous button even though it's random? I looked at a ...
1
vote
1answer
271 views

Optimal solution for next/previous function in PHP/mySQL

I want a good solution for next and previous in a php script. The first thing Im think is that you do this when you go next: select id from table where id > '$_GET[id]' limit 1; But how can I ...
1
vote
2answers
136 views

Forward Back Records in MySQL with the same DATA in the primary

I have a table that is is sorted 1st by Reminder Date then ID Table Looks like: ID | remind_date 1 2011-01-23 2 2010-02-21 4 2011-04-04 5 2011-04-04 6 2009-05-04 I am using a ...
1
vote
2answers
596 views

Next and Previous MySQL row based on name

I have a table with details on personnel. I would like to create a Next/Previous link based on the individual's last name. Since personnel were not added in alphabetical order, selecting the next or ...
0
votes
1answer
58 views

Next and previus rows in a mysql query

How can I select next and previous rows for a total of six rows in a query but with conditions: I'll always have 6 rows, so if i have: 1, 2, 3, 4, 5, 6, 7, 8, 9 and my ID is 2 the result must be: ...
0
votes
1answer
86 views

previous and next match mysql

I have a table of football fixtures, and I need to return the last and next match based on date. Is there a simple way to do this? the table has date, time, team, so would need to group it by team. ...
0
votes
3answers
162 views

Can select next record alphabetically, but what happens when the record name is identical?

With this sql I can grab the next name in alphabetical order using the ID of SELECT id FROM `names` WHERE `name` > (SELECT `name` FROM `names` WHERE `id` = X) ORDER BY `name` ASC, `id` ASC ...
0
votes
3answers
469 views

Efficient algorithm for Next button on a MySQL result set

I have a website that lets people view rows in a table (each row is a picture). There are more than 100,000 rows. You can view different subsets of the rows, and you can view them with different ...