I need to find the greatest number in my MySQL database table. What is the SQL statement will accomplish this?
Thanks!
How to find greatest number in a database table?
Moderator: General Moderators
It's always nice if you let the others know what the solution was... 
Code: Select all
SELECT MAX(columnname)
FROM tablename