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

From Emi Lu
Subject Get the max(value1, value2, value3) from a table
Date
Msg-id 4782A1B2.5050804@encs.concordia.ca
Whole thread Raw
Responses Re: Get the max(value1, value2, value3) from a table  ("Scott Marlowe" <scott.marlowe@gmail.com>)
Re: Get the max(value1, value2, value3) from a table  (Josh Williams <joshwilliams@ij.net>)
List pgsql-sql
Greetings,

Version: PostgreSQL 8.0.13 on i686-pc-linux-gnu

I have a table test(col1, col2, col3)

For each row, I'd like to get the "max"(col1, col2, col3).

For example, test(1, 5, 2)             test(8, 1, 3)             test(12, 1, 1)


select ?max?(col1, col2, col3) as result;
will return

result
-------
5
8
12

(3 rows)

Thanks!
Ly.


pgsql-sql by date:

Previous
From: gherzig@fmed.uba.ar
Date:
Subject: Re: reading WAL files in python
Next
From: "Scott Marlowe"
Date:
Subject: Re: Get the max(value1, value2, value3) from a table