MySQL query for max() of all columns

2019-05-26 10:31发布

问题:

What is the correct way of retrieving maximum values of all columns in a table with a single query? Thanks.

Clarification: the same query should work on any table, i.e. the column names are not to be hard-coded into it.

回答1:

You're going to have to do it in two steps - one to retrieve the structure of the table, followed by a second step to retrieve the max values for each

In php:

$table = "aTableName";
$columnsResult = mysql_query("SHOW COLUMNS FROM $table");

$maxValsSelect = "";
while ($aColumn = mysql_fetch_assoc($columnsResult)) {
  if (strlen($maxValsSelect) > 0) {
    //Seperator
    $maxValsSelect .= ", ";
  }  

  $maxValsSelect .= "MAX(" . $aColumn['Field'] . ") AS '" . $aColumn['Field'] . "'";
} 

//Complete the query
$maxValsQuery = "SELECT $maxValsSelect FROM $table";
$maxValsResult = mysql_query($maxValsQuery);

//process the results....


回答2:

SELECT max(col1) as max_col1, max(col2) as max_col2 FROM `table`;


回答3:

I think (but would be happy to be shown wrong) that you have to know at least the number of columns in the table, but then you can do:

select max(c1),max(c2),max(c3),max(c4),max(c5)
from (
    select 1 c1, 1 c2, 1 c3, 1 c4, 1 c5 from dual where 0
    union all
    select * from arbitrary5columntable
) foo;

Obviously you lose any benefits of indexing.



标签: mysql max