SELECT column FROM table WHERE column is largest?
SELECT
FROM
WHERE
Try:
SELECT MAX(column) FROM table;