Re: need magic formula for euro conversion

Поиск
Список
Период
Сортировка
От Manfred Koizar
Тема Re: need magic formula for euro conversion
Дата
Msg-id iphsfu8l7o0mjho2kpk8bh27m6u4aent69@4ax.com
обсуждение исходный текст
Ответ на need magic formula for euro conversion  (tony <tony@animaproductions.com>)
Список pgsql-general
On 05 Jun 2002 17:14:10 +0200, tony <tony@animaproductions.com> wrote:
>Hello,
>
>Does anyone out there in Euroland have the magic formula that will let
>me convert a decimal(12,2) column to another decimal(12,2) column with
>automatic rounding up or down to comply with the EURO conversion rules?

Tony,

SELECT e, (e * 13.7603::decimal(12,4))::decimal(12,2) AS ats
FROM eur;
  e   |  ats
------+-------
 1.00 | 13.76
 0.10 |  1.38

This might solve part of your problem.  Hope you get the direction.
Servus
 Manfred

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

Предыдущее
От: Manfred Koizar
Дата:
Сообщение: Re: a trigger question
Следующее
От: eric.jones@hua.army.mil
Дата:
Сообщение: EASY!!! Timestamp conversion & php