Re: ORDER BY TIMESTAMP_column ASC, NULL first

Поиск
Список
Период
Сортировка
Искать
От
Denis
Тема
Re: ORDER BY TIMESTAMP_column ASC, NULL first
Дата
Msg-id
006c01c3f462$77bf3d60$0f32a8c0@denisnew
Список
Дерево обсуждения
ORDER BY TIMESTAMP_column ASC, NULL first Fredrik Wendt <fredrik@csbnet.se>
Re: ORDER BY TIMESTAMP_column ASC, NULL first Rod Taylor <pg@rbt.ca>
Re: ORDER BY TIMESTAMP_column ASC, NULL first Stephan Szabo <sszabo@megazone.bigpanda.com>
Re: ORDER BY TIMESTAMP_column ASC, NULL first Bruno Wolff III <bruno@wolff.to>
Re: ORDER BY TIMESTAMP_column ASC, NULL first Tomasz Myrta <jasiek@klaster.net>
Hi Rod,

Try this....

ace=> create table test(name text, age int );
CREATE
ace=> insert into test values ('Denis',26);
INSERT 1823531 1
ace=> insert into test values (null,26);
INSERT 1823532 1
ace=> select * from test order by name;name  | age
-------+-----Denis |  26      |  26
(2 rows)

ace=> select * from test order by coalesce(name,'');name  | age
-------+-----      |  26Denis |  26     

HTH

Thanx

Denis

----- Original Message ----- 
From: "Rod Taylor" 
To: "Fredrik Wendt" 
Cc: 
Sent: Monday, February 16, 2004 12:32 AM
Subject: Re: [SQL] ORDER BY TIMESTAMP_column ASC, NULL first


> On Thu, 2004-02-12 at 05:06, Fredrik Wendt wrote:
> > Hi!
> > 
> > I read posts telling me that NULL values are considered greater than
> > non-null values. Fine. Is there a way to explicitly reverse this?
> 
> ORDER BY column IS NOT NULL, column ASC;
> 
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
>     (send "unregister YourEmailAddressHere" to majordomo@postgresql.org)



В списке pgsql-sql по дате отправления
От: Robert Treat
Дата:
От: Denis
Дата:
Сообщение: Re: max timestamp
FAQ