Hi..
I just want to know what is the code to get the last inserted row on database.
I tried max and last_insert_id yet it did not solve my problem
it display all data from my database.Code:SELECT last_insert_id(sr_number), sr_date, Items, SubItems, ItemCode, DemandedQty FROM stock_requisition;
it only display last row.. but I need to display all data with all data with same sr_numberCode:SELECT max(sr_number), sr_date, Items, SubItems, ItemCode, DemandedQty FROM stock_requisition;
for example :
1204100002
I attach my sample data from my database:
Thank you so much


Reply With Quote

Bookmarks