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

I usally use MAX() or MIN() if a DBMS hasn't an ANY() aggregate function.

Is there something less expensive in mySQL and MS-SQL?

share|improve this question
why do not exists an ANY() aggregate function? – Luis Siquot May 19 '11 at 14:28
1  
Why would an ANY() aggregate function exist? What would its specification be? – Jonathan Leffler May 19 '11 at 14:30
What do you mean with ANY()? It should return one random row? – ypercube May 19 '11 at 14:31
1  
any(expresion) : returns any value of expresion within the group. in order to have good performance with trivial dependant columns in cases where all are the same or just any is good enaugh – Luis Siquot May 19 '11 at 14:35
No ANY aggregate in ANSI-92 SQL contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt – gbn May 19 '11 at 14:37
show 5 more comments

3 Answers

up vote 4 down vote accepted

MySQL does not need an ANY() aggregate.

if I do a

SELECT field1, field2, SUM(field3) FROM table1 
GROUP BY field2

Microsofts T-SQL will complain but

MySQL will just silently execute

SELECT whatever(field1), field2, SUM(.... 

Which of course is way faster than SELECT max(field1), field2, SUM(.... GROUP BY field2

MySQL supports ANY, but SELECT ANY(field1) ... doesn't work because ANY is an operator similar to IN and ALL.
see: http://dev.mysql.com/doc/refman/5.0/en/any-in-some-subqueries.html

I love MySQL

share|improve this answer
4  
Ambiguious and not explicit = dangerous. – gbn May 19 '11 at 14:43
2  
@gbn, many tools give you a gun to shoot with, that's why you need to know your tool, so you don't shoot yourself in the foot. Whether guns kill people or people kill people is another discussion entirely. – Johan May 19 '11 at 14:45
3  
Poor analogy: not comparable. In this situation I see no need to have the RDBMS guess a column on my behalf. Only MySQL has this ambiguity too: SQL Server, Sybase, Oracle, PostGres do not. See stackoverflow.com/q/5986127/27535 – gbn May 19 '11 at 14:48
5  
What a fantastic coinage, and very appropriate: idiology, as in idio[tic] [ideo]logy, as in "the idiology of MySQL". I'll remember that one. (The correct spelling is ideology, btw.) – LukeH May 19 '11 at 15:20
4  
@Johan - To carry your firearms analogy to it's conclusion - Quality guns (all other RDBMS) give you a safety switch to prevent accidental firing. MYSQL gives you a hair trigger and overloaded ammunition to make it much easier to hurt yourself. – JNK May 19 '11 at 15:36
show 7 more comments

There is no ANY aggregate in ANSI SQL-92

There is the ANY qualifier to match SOME and ALL

MIN and MAX are proper aggregates... completely unrelated and shouldn't be compared

Edit:

Only MySQL has this ambiguity of an "ANY" aggregate: SQL Server, Sybase, Oracle, PostGres do not. See Do all columns in a SELECT list have to appear in a GROUP BY clause

share|improve this answer
i have selected a wrong name to "my aggregate" function. but I mean a way to have less expensive alternative of max() or min() if it exists – Luis Siquot May 19 '11 at 15:01
great!! link – Luis Siquot May 19 '11 at 15:13
@Martin Smith: smarty pants. – gbn Oct 17 '11 at 9:26
@gbn - I've no idea if there would be any benefit to rewriting a query to get it though. Might be some minor reduction in CPU time potentially as it doesn't have to do any comparisons? – Martin Smith Oct 17 '11 at 9:34
show 1 more comment

MIN and MAX are equally (in)expensive.

share|improve this answer
1  
i know, but is there other less expensive? – Luis Siquot May 19 '11 at 14:31
@Luis - If the field is indexed, no. MIN and MAX on an indexed field just go to the first or last entry in the index. – JNK May 19 '11 at 14:32
How about AVG()? – Parkyprg May 19 '11 at 14:34
Well AVG needs to check all values for the field... – JNK May 19 '11 at 14:36
@JNK: but MIN() or MAX() doesn't? – Parkyprg May 19 '11 at 14:39
show 4 more comments

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.