I have a column in my database with numbers in it. What would be the SQL query to return the highest number in this column?
You should use the SQL function MAX(), e.g.
SELECT MAX(columnname) FROM tablename;