How can I SELECT the last row in a MySQL table?
I'm INSERTing data and I need to retrieve a column value from the previous row.
(I'm using PHP by the way.)
There's an auto_increment in the table.
If you want the last of all the rows in the table, then this is finally the time where
|
|||
|
|
|
Keep in mind that tables in relational databases are just sets of rows. And sets in mathematics are unordered collections. There is no first or last row; no previous row or next row. You'll have to sort your set of unordered rows by some field first, and then you are free the iterate through the resultset in the order you defined. Since you have an auto incrementing field, I assume you want that to be the sorting field. In that case, you may want to do the following:
See how we're first sorting the set of unordered rows by the |
|||
|
|
|
If you want the most recently added one, add a timestamp and select ordered in reverse order by highest timestamp, limit 1. If you want to go by ID, sort by ID. If you want to use the one you JUST added, use |
|||
|
|
|
on tables with many rows are two queries probably faster...
|
|||
|
|
|
Make it simply use: |
|||
|
|
auto_incrementin there. I'd like the most recently added one. – esqew Nov 1 '10 at 23:21