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
SELECT MAX(id) FROM TABELNAME
This identifies the largest id and returns the value