Re: Casting to money

Поиск
Список
Период
Сортировка
От Shane Ambler
Тема Re: Casting to money
Дата
Msg-id 452A02E4.1030509@007Marketing.com
обсуждение исходный текст
Ответ на Re: Casting to money  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Casting to money  ("Dave Page" <dpage@vale-housing.co.uk>)
Список pgsql-hackers
Tom Lane wrote:
> "Dave Page" <dpage@vale-housing.co.uk> writes:
>> select '$123.45'::money
>> ERROR: invalid input syntax for type money: "$123.45"
>> select '£123.00'::money
>> ERROR: invalid input syntax for type money: "£123.00"
> 
> So ... what locale are you trying this in?
> 
I get the following from 8.2beta1 - looks like it doesn't like the 
double quotes.

postgres=# select '123.45'::money;  money
--------- $123.45
(1 row)

postgres=# select '$123.45'::money;  money
--------- $123.45
(1 row)
postgres=# select "123.45"::money;
ERROR:  column "123.45" does not exist
LINE 1: select "123.45"::money;               ^
postgres=# select "$123.45"::money;
ERROR:  column "$123.45" does not exist
LINE 1: select "$123.45"::money;               ^


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

Предыдущее
От: "Dave Page"
Дата:
Сообщение: Re: Casting to money
Следующее
От: "Albe Laurenz"
Дата:
Сообщение: Re: Casting to money