Re: Convert boolean field to a 0 or a 1 in a select statement

Поиск
Список
Период
Сортировка
От David G Johnston
Тема Re: Convert boolean field to a 0 or a 1 in a select statement
Дата
Msg-id 1420823883854-5833422.post@n5.nabble.com
обсуждение исходный текст
Ответ на Convert boolean field to a 0 or a 1 in a select statement  (JORGE MALDONADO <jorgemal1960@gmail.com>)
Список pgsql-novice
JORGE MALDONADO wrote
> I have a SELECT statement which contains a boolean field. The result of
> this query must display '0' for false or '1' for true. I will be
> generating
> a text file with this information and a zero or a one is required. I have
> tried using the CASE statement without success.
>
> CAST(fce_subdivision as CHAR) AS fce_subdivision_aux,
> CASE CAST(fce_subdivision as CHAR)
>     WHEN 'f' THEN '0'
>     WHEN 't' THEN '1'
> END
>
> I will very much appreciate your feedback.
>
> Respectfully,
> Jorge Maldonado

One of us is missing something because this is the direct application of
your requirement as stated:

CASE WHEN fce_subdivision THEN '1' ELSE '0' END

David J.




--
View this message in context:
http://postgresql.nabble.com/Convert-boolean-field-to-a-0-or-a-1-in-a-select-statement-tp5833411p5833422.html
Sent from the PostgreSQL - novice mailing list archive at Nabble.com.


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

Предыдущее
От: Steve Crawford
Дата:
Сообщение: Re: Upgrade Ubuntu - PostgresSQL is ok?
Следующее
От: Ravi Kiran
Дата:
Сообщение: Hash function