For example:
name | weight jon 100 jane 120 joe 130
How do I only return the name of the person with the largest weight?
SELECT name FROM tbl ORDER BY weight DESC LIMIT 1
Much more performant than the other answer and results in one row only.