adi5402 Posted September 13, 2008 Share Posted September 13, 2008 I have a table with 500 products how do i pick up the last row I know you can order it by using this i can also get the number of rows using some code but is there a way we can just directly read the last entry $sql = 'SELECT * FROM `products` ORDER BY `products`.`book_Id` ASC LIMIT 0, 30 '; Link to comment https://forums.phpfreaks.com/topic/124106-solved-how-do-you-read-the-last-row-in-table/ Share on other sites More sharing options...
Mchl Posted September 13, 2008 Share Posted September 13, 2008 $sql = 'SELECT * FROM `products` ORDER BY `products`.`book_Id` DESC LIMIT 1'; Link to comment https://forums.phpfreaks.com/topic/124106-solved-how-do-you-read-the-last-row-in-table/#findComment-640725 Share on other sites More sharing options...
adi5402 Posted September 13, 2008 Author Share Posted September 13, 2008 cheers Link to comment https://forums.phpfreaks.com/topic/124106-solved-how-do-you-read-the-last-row-in-table/#findComment-640731 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.