So basically I have a table with two fields, 'number' and 'title', and I need a query to select the row with the highest value in 'number', for this i used
SELECT MAX('number') FROM table
Now I need to get the value of 'title' that corresponds to the highest value of 'number'.
How can this be achieved?