How do I get the last entry out of my log in Oracle?
I know in MySQL I can "LIMIT 1"
In Oracel I can do a MAX(LOG_ID) and get the last entry but only one field...
I need to do something like this, but this does not return all fields on that row...
SELECT *, max(LOG_ID) FROM LOG WHERE ITEM_ID = '3286'
Any Ideas?