Question

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.

Was it helpful?

Solution

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....

OTHER TIPS

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

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top