Jump to content

LIMIT and ORDER BY


jj20051

Recommended Posts

I need mysql to select the highest id in a table, select the first 7 rows and flip the results so that the highest id is the last one displayed. (This is a while() function).

 

Example Table:

id, pageviews

1, 100

2, 200

3, 300

4, 400

5, 500

6, 600

7, 700

8, 800

9, 900

 

The query would pull out:

 

3, 300

4, 400

5, 500

6, 600

7, 700

8, 800

9, 900

 

Unfortunatly I don't know how to do this and some help would be appreciated. I hope I've explained it well enough for someone to understand what I'm trying to do. Its for a graph and I want the most recent data to be on the right side instead of the left which is what you'll get if you run a query like:

 

SELECT * FROM traffic ORDER BY id DESC LIMIT 7

Link to comment
https://forums.phpfreaks.com/topic/211676-limit-and-order-by/
Share on other sites

  • 3 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.