How can I select the row with the highest ID in MySQL? This is my current code:
SELECT * FROM permlog WHERE max(id)
Errors come up, can som
if it's just the highest ID you want. and ID is unique/auto_increment:
SELECT MAX(ID) FROM tablename