Re: Get the max(value1, value2, value3) from a table - Mailing list pgsql-sql

From Emi Lu
Subject Re: Get the max(value1, value2, value3) from a table
Date
Msg-id 4782AD66.3060606@encs.concordia.ca
Whole thread Raw
In response to Re: Get the max(value1, value2, value3) from a table  ("Scott Marlowe" <scott.marlowe@gmail.com>)
Responses Re: Get the max(value1, value2, value3) from a table  ("Scott Marlowe" <scott.marlowe@gmail.com>)
List pgsql-sql
>>> select ?max?(col1, col2, col3) as result;
>>> will return
>>>
>>> result
>>> -------
>>> 5
>>> 8
>>> 12
>>>
>>> (3 rows)
>> 8.1 (I believe?) introduced GREATEST(), which does precisely what you're
>> looking for.
> 
> How would greatest give him three rows like that?  Maybe I'm
> misunderstanding what the OP was asking for...

IF 8.1, "select greatest(col1, col2, col3) from test" is exactly what I 
am looking for.

I would do the optional query by union/or for now.

Thanks!
Ly.


pgsql-sql by date:

Previous
From: "Scott Marlowe"
Date:
Subject: Re: Get the max(value1, value2, value3) from a table
Next
From: "Scott Marlowe"
Date:
Subject: Re: Get the max(value1, value2, value3) from a table