izbryte Posted January 9, 2008 Share Posted January 9, 2008 I have a script that selects the most recent inputted item for display: $query = "SELECT *FROM jobs DESC LIMIT 1"; Is there an easy way to select the 2nd most recent or 3rd? Quote Link to comment Share on other sites More sharing options...
hitman6003 Posted January 9, 2008 Share Posted January 9, 2008 $query = "SELECT *FROM jobs DESC LIMIT 1, 1"; //selects the second item Quote Link to comment Share on other sites More sharing options...
izbryte Posted January 9, 2008 Author Share Posted January 9, 2008 k, gotcha! thanks! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.