Re: NULL OR ZERO

Поиск
Список
Период
Сортировка
От Andrei Kovalevski
Тема Re: NULL OR ZERO
Дата
Msg-id 47A6F407.5080708@commandprompt.com
обсуждение исходный текст
Ответ на NULL OR ZERO  ("Omar Bettin" <o.bettin@tiscali.it>)
Список pgsql-hackers
Hello,

Omar Bettin wrote:
> Probably I am on the wrong place but for me NULL on numbers means 0 or 
> ZERO.
> I know about standards...
>

You can easily convert NULLs to 0 in your queries - read about COALESCE 
function 
http://www.postgresql.org/docs/8.0/interactive/functions-conditional.html. 
Compare these SELECTs:

CREATE TABLE test (num INTEGER);
INSERT INTO test VALUES (1), (2), (null), (3), (null), (4), (0);

SELECT num FROM test;

SELECT COALESCE(num, 0) FROM test;


> but I think that integralism is somewhat wrong.
>
> Omar
> a programmer...
>
> ---------------------------(end of broadcast)---------------------------
> TIP 9: In versions below 8.0, the planner will ignore your desire to
>       choose an index scan if your joining column's datatypes do not
>       match


-- 
Andrei Kovalevski
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
Managed Services, Shared and Dedicated Hosting
Co-Authors: plPHP, ODBCng - http://www.commandprompt.com/



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

Предыдущее
От: Simon Riggs
Дата:
Сообщение: Re: configurability of OOM killer
Следующее
От: Kenneth Marshall
Дата:
Сообщение: Re: Reverse key index