Get the max(value1, value2, value3) from a table
От
Emi Lu
Тема
Get the max(value1, value2, value3) from a table
Дата
Msg-id
4782A1B2.5050804@encs.concordia.ca
Список
Дерево обсуждения
Get the max(value1, value2, value3) from a table Emi Lu <emilu@encs.concordia.ca>
Re: Get the max(value1, value2, value3) from a table Josh Williams <joshwilliams@ij.net>
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 Emi Lu <emilu@encs.concordia.ca>
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 Erik Jones <erik@myemma.com>
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 Richard Broersma Jr <rabroersma@yahoo.com>
Re: Get the max(value1, value2, value3) from a table Emi Lu <emilu@encs.concordia.ca>
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 "Scott Marlowe" <scott.marlowe@gmail.com>
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 по дате отправления