Re: [ADMIN] How do I select the last Id in a column???

2003-06-27 Thread Michael Kovalcik
All, i got the answer i was needing. I used the following: select max(id) from table it works great!! :) --- Josh Goldberg <[EMAIL PROTECTED]> wrote: > What could cause a table to act serialized when read > committed transactions > are set in the configuration? That is something I > am runnin

[ADMIN] How do I select the last Id in a column???

2003-06-26 Thread Michael Kovalcik
Hello, I'm trying to find out how I select the last id in a column if I don't know anything else about the row. What i am doing is inserting information into my Orders table and the id is auto-incrementing. The next thing i want to be able to do is grab the the id of the order i just inserted.