Re: adding fields containing NULL values

Поиск
Список
Период
Сортировка
От Grant Finnemore
Тема Re: adding fields containing NULL values
Дата
Msg-id 393273EB.225F9DA5@ucs.co.za
обсуждение исходный текст
Ответ на adding fields containing NULL values  (Werner Modenbach <modenbach@alc.de>)
Список pgsql-sql
Werner,

> Umfortunately 'select employee,date,sallary+extras as total' doesn't give the
> desired result because 'somevalue + NULL' is considered to be NULL.
> Is there any solution for my (small) problem?

Try   SELECT employee, date, salary + COALESCE(extras, 0) as total FROM ...

Regards

Grant

--
> Poorly planned software requires a genius to write it
> and a hero to use it.

Grant Finnemore BSc(Eng)  (mailto:gaf@ucs.co.za)
Software Engineer         Universal Computer Services
Tel  (+27)(11)712-1366    PO Box 31266 Braamfontein 2017, South Africa
Cell (+27)(82)604-5536    20th Floor, 209 Smit St., Braamfontein
Fax  (+27)(11)339-3421    Johannesburg, South Africa





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

Предыдущее
От: Werner Modenbach
Дата:
Сообщение: adding fields containing NULL values
Следующее
От: Bernie Huang
Дата:
Сообщение: template or index of some kind