Re: Formating numbers useing to_char: how to get rid of leading space?

Поиск
Список
Период
Сортировка
От Karel Zak
Тема Re: Formating numbers useing to_char: how to get rid of leading space?
Дата
Msg-id Pine.LNX.3.96.1000925101111.28122A-100000@ara.zf.jcu.cz
обсуждение исходный текст
Ответ на Formating numbers useing to_char: how to get rid of leading space?  (Erich <hh@cyberpass.net>)
Список pgsql-general
On Sun, 24 Sep 2000, Erich wrote:

>
> I'm trying to format some numbers using to_char, like this:
>
>     SELECT TO_CHAR(34, '099999');
>
> Whenever I do this, I always get a leading space, if the int is
> positive.  I looked at the manual, and all the examples had leading
> spaces.  Is there a way to get rid of this using TO_CHAR, or should I

 Try read docs again...

test=# SELECT '>' || TO_CHAR(34, '099999') || '<';
 ?column?
-----------
 > 000034<
(1 row)

test=# SELECT '>' || TO_CHAR(34, 'FM099999') || '<';
 ?column?
----------
 >000034<
(1 row)

    'FM' = fill mode

                        Karel


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

Предыдущее
От: Philip Warner
Дата:
Сообщение: Re: Case Studies for PostgresSQL
Следующее
От: Louis-David Mitterrand
Дата:
Сообщение: SPI vs. libpq for function programming