tags:

views:

46

answers:

1

SELECT column FROM table WHERE column is largest?

+5  A: 

Try:

SELECT MAX(column) FROM table;
codaddict