It depends on what your table structure is like... say you have a table called table_name, and the identifier is a sequence number called column_id, you can do a subquery... that gets the maximum column_id... then the outer query is to return everything else, see below.
SELECT * FROM table_name WHERE column_id = (
SELECT max(column_id)
FROM table_name );
You may consider looking up Analytical functions as well for a possible solution.
Comment