SyntaxFix
Write A Post
Hire A Developer
Questions
SELECT * FROM permlog WHERE id = ( SELECT MAX(id) FROM permlog ) ;
This would return all rows with highest id, in case id column is not constrained to be unique.
id