Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how to find the maximum value in a column with integer values without using aggregate operator in mysql

share|improve this question
3  
and you don't want an aggregate operator because? – msw Sep 15 '10 at 4:37

2 Answers

up vote 3 down vote accepted

How about something like

SELECT <Value>
FROM <YourTable>
ORDER BY <Value> DESC
LIMIT 1
share|improve this answer

You can do:

SELECT IntColumn FROM MyTable ORDER BY IntColumn DESC LIMIT 1
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.