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 * FROM permlog ORDER BY id DESC LIMIT 0, 1