I want to select the most recent record in the database and use that for the object rs to work with the .asp page. I don't want to select the whole recordset and just rs.movelast because that's more time taken for somthing that could go much faster by just one record selection which is all we need...
I tried:
sql = "SELECT MAX(locals.localPK) FROM locals;"
but that only returned the localPK field. Is there a way to select the maximum primary key field, but retrieve the entire record associated with that field?
Thanks in advance! -Ovatvvon :-Q