Suppose I have a SQL database in which a column could look something like this
Numbers
-------
1
1
2
3
4
4
Is it possible to create a single SQL query that simply grabs the largest number, which in this case would be 4? Or would I have to query every single number, put them in some sort of list in an external program, and write an algorithm to find the largest one?