Author Topic: How to get last 5 records  (Read 6254 times)

rahul

  • Newbie
  • *
  • Posts: 16
How to get last 5 records
« on: September 29, 2012, 11:32:38 AM »
hi ,
     i have a table more than 5000 records and i just want to see last n numbers of records from my table is this possible and how to achieve this with sufficient query

phpdeveloper

  • Newbie
  • *
  • Posts: 39
Re: How to get last 5 records
« Reply #1 on: September 29, 2012, 12:31:26 PM »
This is very easy to get last n numbers of records from data base you can try like this

Code: [Select]
SELECT columnNames 
FROM YourTableName
ORDER BY columnNAme  DESC
LIMIT 5

Hope this will help you.

 

X

Do you know?

IfAndBut.com gives you a platform where you can ask questions related to web and internet..
So, why wait..
Join Now!