Jan 26, 2006 #1 chaoma Technical User Apr 17, 2005 101 US Does any one know how to get the very last record from the table? Table is not sorted. Thank you for your assistance. chaoma
Does any one know how to get the very last record from the table? Table is not sorted. Thank you for your assistance. chaoma
Jan 26, 2006 #2 Bobbber Programmer Sep 6, 2002 83 TR Add an autoincrement field to the table (call it ID or something). Then : SELECT TOP 1 * FROM Table order by ID desc Bob Upvote 0 Downvote
Add an autoincrement field to the table (call it ID or something). Then : SELECT TOP 1 * FROM Table order by ID desc Bob