Re: How to max() make null as biggest value?

Поиск
Список
Период
Сортировка
От Pavel Stehule
Тема Re: How to max() make null as biggest value?
Дата
Msg-id s2z162867791004200817j80b0a976u9979bfc7e7d73f25@mail.gmail.com
обсуждение исходный текст
Ответ на How to max() make null as biggest value?  (Feixiong Li <feixiongli@gmail.com>)
Ответы Re: How to max() make null as biggest value?  (Pavel Stehule <pavel.stehule@gmail.com>)
Список pgsql-sql
Hello

2010/4/14 Feixiong Li <feixiongli@gmail.com>:
> Hi , guys ,
>
> I am newbie for sql, I have a problem when using max() function, I need get
> null when there are null in the value list, or return the largest value as
> usual, who can do this?
>

max()  returns max value of some column

create table foo(a int);
insert into foo values(10);
insert into foo values(33);

postgres=# select * from foo;a
----1033
(2 rows)

Time: 0,524 ms
postgres=# select max(a) from foo;max
----- 33
(1 row)

there is function greatest

postgres=# select greatest(1,2,34,2,1);greatest
----------      34
(1 row)

regards
Pavel Stehule

> i.e.  max([1,2,3,4,5]) => 5
> max([1,2,3,4,5,null]) => null
>
> thanks in advance!
>
> Feixiong
> feixiongli@gmail.com
>
>
>
>
>
>
>
> --
> Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-sql
>


В списке pgsql-sql по дате отправления:

Предыдущее
От: Gonzalo Aguilar Delgado
Дата:
Сообщение: Problem with insert related to different schemas
Следующее
От: "Oliveiros"
Дата:
Сообщение: Re: How to max() make null as biggest value?