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?
|
MySQL does not need an ANY() aggregate. if I do a
Microsofts T-SQL will complain but MySQL will just silently execute
Which of course is way faster than MySQL supports I love MySQL |
|||||||||||||||||||||
|
|
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 |
|||||||||||
|
|
MIN and MAX are equally (in)expensive. |
|||||||||||||
|
ANY()? It should return one random row? – ypercube May 19 '11 at 14:31any(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