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

I tried but failed:

mysql> select max(1,0);
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual 
that corresponds to your MySQL server version for the right syntax to use 
near '0)' at line 1
share|improve this question

2 Answers

up vote 129 down vote accepted

Use GREATEST()

Eg:

SELECT GREATEST(2,1);
share|improve this answer
example: select greatest(queue.count - 1, 0) from queue; – Jahmic Jun 20 '12 at 17:16
2  
one thing need to keep in mind that whenever if any single value contains null at that time this function always returns null as answer! – an5607ky Mar 1 at 12:00
There is also LEAST – bobobobo Apr 13 at 19:10

Select maximum from where?

SELECT MAX(colum_from_where_you_need_maximum) FROM (table_name)
share|improve this answer
2  
You should try issuing SELECT 1; once. Databases can do a lot more than you think. – soulmerge Oct 14 '09 at 11:44
4  
You should have READ the question. – OcuS Sep 12 '12 at 16:08
1  
I am well aware of it now :) I was a Real (with a big R) noob back then :) – Trick Sep 26 '12 at 17:50

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.