Author Topic: How to get last 5 records  (Read 6823 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

Sponsor

  • ****
  • Posts: 100
How to get last 5 records
« sponsored at September 29, 2012, 11:32:38 AM »

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.

 

anything