Can anyone tell how to get the last autoincrement value table in
mysql?
Thanks,
Ramya
The id generated for the most recently inserted record on a connection
can be found by SELECT LAST_INSERT_ID().
>
> Thanks,
> Ramya
D'oh! Very good point.
Yes, but the OP did ask how to get it "in mysql" and your answer was
spot on for that.