Reputation: 1105
how to find the maximum value in a column with integer values without using aggregate operator in mysql
Upvotes: 1
Views: 842
Reputation: 44786
You can do:
SELECT IntColumn FROM MyTable ORDER BY IntColumn DESC LIMIT 1
Upvotes: 0
Reputation: 166406
How about something like
SELECT <Value>
FROM <YourTable>
ORDER BY <Value> DESC
LIMIT 1
Upvotes: 4