the MAX(id) works, but I'd like the row_id, so for example
- find largest id
- return row_id with largest id
something basically select row_id from 'table_info' where [id is the largest]
I tried:
SELECT fpuser_id FROM fpuser WHERE (v_age=(select MAX(v_age) from fpuser)
and that didn't work