Re: How to increase precision?

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: How to increase precision?
Дата
Msg-id 20030502153816.U77106-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на How to increase precision?  ("Katka a Daniel Dunajsky" <daniel_katka@hotmail.com>)
Список pgsql-sql
On Fri, 2 May 2003, Katka a Daniel Dunajsky wrote:

> this is a newbie question:
>
> How to increase the precision of calculations in posgresql?
>
> When I run this query:
>
> select 5/2;
>
> I get:
>
> ?column?
> --------
>        2
>
> It should be 2.5 shouldn't it?

It's doing integer division since both arguments are integers. You'll need
to make one of them something like float, double or numeric.

For example, queries like:

select 5./2;
select 5/cast(2 as float);

etc... don't do integer division because one of
the arguments isn't typed as an integer type.



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

Предыдущее
От: "Katka a Daniel Dunajsky"
Дата:
Сообщение: Time formating
Следующее
От: Steve Crawford
Дата:
Сообщение: Re: Best way to delete time stamped data?