I am using mysql and facing some problem. I want to retrieve last row that is inserted.

<< Below are details >>

Below is how I created table.

create table maxID (myID varchar(4))

I inserted four values in it as below

insert into maxID values ('A001')
insert into maxID values ('A002')
insert into maxID values ('A004')
insert into maxID values ('A003')

When I execute select myID, last_insert_id() as NewID from maxID, I get output as below

myId NewID
A001   0  
A002   0  
A004   0  
A003   0    

When I tried below code,

select myId, last_insert_id() as NewID, @rowid:=@rowid+1 as myrow from maxID, (SELECT @rowid:=0) as init

I get output as below.

myId NewID  rowid
A001   0      1
A002   0      2
A004   0      3
A003   0      4

However when I use code select myId, last_insert_id() as NewID, @rowid:=@rowid+1 as myrow from maxID, (SELECT @rowid:=0) as init where @rowid = 4, I get error as Uknown column 'myrow' in where clause

When I use where @rowid=4, I don't get any data in tables.

Note: Here I am using 4 just to get desired output. Later I can get this from a query (select max(rowid) from maxID)

Please suggest me what need to do if I want to see only last record i.e. A003.

Note: I have myID as varchar type and I retrieve the same.

Thanks for your time.

Update:

I already have thousands of data in my table so I can't add new column in it...

link|improve this question

Thanks for all comments... BUT is there any way to find LAST RECORD INSERTED in my case? – Fahim Parkar Jan 21 at 1:22
feedback

4 Answers

From your insert script, A004 is not the last inserted record. It's the third one. If you want to get the last record in alphabetical order (which A004 is), you must use

select myID from maxID order by myID desc limit 1

If you want the last inserted row, why don't you just use add an autoincrement column to your table? That's the point of those kinds of columns. The autoincrement column doesn't have to be the PK (it should be, but doesn't have to if you don't have the choice).

link|improve this answer
thanks for catch.. I edited the same... – Fahim Parkar Jan 19 at 9:10
See my edited answer then. – JB Nizet Jan 19 at 9:13
sorry, its not giving what I want... NOTE: You are sorting it which is incorrect... by sorting records will be moved... – Fahim Parkar Jan 19 at 9:13
Read it again, especially the last part: you need an autoincrement column, which may not be the PK. – JB Nizet Jan 19 at 9:23
I will check you answer later and get back to you surely... Thanks for reply... – Fahim Parkar Jan 19 at 9:25
show 1 more comment
feedback

As mentioned in the MySQL help for last_insert_id, you can only use it with **auto-increment columns. This means that you cannot make MySQL find the most recently inserted row for you, unless you know something about the order of the IDs. If they are sorted like your example suggests, then you can use

SELECT *
FROM maxID
WHERE myId = max(myId)

But I suggest adding an auto-increment column to the table and then use = last_insert_id() in your WHERE clause. See also this page for information on how to obtain the last ID.

link|improve this answer
1  
please check my question again.. I am getting data as 0 there... I don't have ID as integer... – Fahim Parkar Jan 19 at 9:03
I already have table and myId is varchar, so I can't alter my table now as it is linked to many other tables... :( – Fahim Parkar Jan 19 at 9:09
I've updated the answer significantly when I realized that you don't have an auto-increment column. You should really add such a column if you want to track the last inserted row. – Martin Geisler Jan 19 at 9:12
feedback

last_insert_id does not work because it only returns the last value generated by an auto-increment field. However I think that solution may be on the right track. I would suggest adding another column that is a auto-increment integer. You can then insert data and to retrieve the row you just inserted select the last_insert_id(). To retrieve the most recent row (inserted by any process) select the max number for the new column, or sort by it desc.

If you want to use the varchar column you can do an alphabetic sort, but that does not guarantee it will be the last row you inserted row or even the most recently inserted row.

The one other solution I can think of which may do what you need is to create a stored procedure which creates the row, inserts it into the table, and then returns it to you.

Your usage of @rowid is simply counting the order rows are returned to you. There is no guarantee that they are returned to you in the order of oldest to newest. There are a variety of things that can affect the order in which rows are stored.

link|improve this answer
see my update in question... – Fahim Parkar Jan 19 at 9:15
I added a bit to my answer. The big question though is do you need a record just entered or just the most recent one at any given point in time? Will this query immediately follow an insert or may it be done independently? – Ilion Jan 19 at 9:19
most recent one at any given point of time... – Fahim Parkar Jan 19 at 9:23
I think you're out of luck given your current design. You could create another table that uses this as a foreign key with a DateTime or auto-increment ID column, since you say you cannot adjust the current schema. It's pretty hacky, but it would work. You could then set a trigger on either table to insert into the other one when it receives an insert, or manage the whole thing through a stored proc. – Ilion Jan 19 at 9:34
ahh. thanks, I will try... BUT is there any other way to find last record in my scenario?? – Fahim Parkar Jan 21 at 1:19
show 4 more comments
feedback

Please use the following query.

Select * from maxID order by myId desc limit 1,1;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.