Jump to content

Increment mysql


dreamwest

Recommended Posts

How can i  create a query that selects (increments) the next row

 

$next = $_GET['next']; 
$next = $next +1; //increment to the next row
"SELECT * FROM red WHERE approve='1' and id='{$next}' "

 

This is ok if the are no missing ids in the table

 

1

2

3

4

5

6

 

But will create a problem with this

 

1

2

5

6

Link to comment
Share on other sites

If you want query to have a column with row numbers you need to do it like this

SET @rownum = 0;
SELECT @rownum := @rownum + 1 AS rowNo, t.* FROM table AS t;

 

These are two queries that have to be run one after another.

Link to comment
Share on other sites

  • 2 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.