Re: Need efficient way to do comparison with NULL as an option

Поиск
Список
Период
Сортировка
От Lew
Тема Re: Need efficient way to do comparison with NULL as an option
Дата
Msg-id wK6dnSHN9r8AOuLanZ2dnUVZ_gqdnZ2d@comcast.com
обсуждение исходный текст
Ответ на Re: Need efficient way to do comparison with NULL as an option  ("Joshua D. Drake" <jd@commandprompt.com>)
Список pgsql-general
D. Dante Lorenso wrote:
>> But if I want to find all the items which are not in any folder, I want:
>>
>>   SELECT *
>>   FROM mytable
>>   WHERE folder_id IS NULL;
>>
>> I don't have any folder_id 0, so on a URL I might do this:
>>
>>   http://xyz/page.php?fid=123
>>   http://xyz/page.php?fid=0

SELECT * FROM mytable WHERE COALESCE( folder_id, 0 ) = 0;

--
Lew

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

Предыдущее
От: cdecarlo
Дата:
Сообщение: Setting variables equal to elements from an Array
Следующее
От: "O'Shea, Brendan"
Дата:
Сообщение: Re: ERROR: catalog is missing 9 attribute(s) for relid 10297