I am trying to retrieve the largest number from a varchar column that includes both numbers and strings. An example of the data I\'m working with:
BoxNumber
You might try
Select MAX(BoxNumber) from {table} where IsNumeric(BoxNumber) = 1